/* ========================================
   MODERN ADMIN ACTION BUTTONS
   Pulsanti azione admin modernizzati
   ======================================== */

/* Container pulsanti azione */
.admin-actions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

/* Pulsante base moderno */
.modern-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.modern-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.modern-action-btn:active {
    transform: translateY(0);
}

/* Pulsante Elimina Utente - Rosso */
.btn-delete-user {
    background: linear-gradient(135deg, #F70000 0%, #D60000 100%);
    color: #ffffff;
    border-color: #F70000;
}

.btn-delete-user:hover {
    background: linear-gradient(135deg, #D60000 0%, #B50000 100%);
    box-shadow: 0 6px 20px rgba(247, 0, 0, 0.3);
    color: #ffffff;
}

/* Pulsante Disapprova - Grigio */
.btn-disapprove {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #ffffff;
    border-color: #6b7280;
}

.btn-disapprove:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.3);
    color: #ffffff;
}

/* Pulsante Approva - Verde */
.btn-approve {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-color: #10b981;
}

.btn-approve:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    color: #ffffff;
}

/* Pulsante Chat - Viola */
.btn-chat {
    background: linear-gradient(135deg, #8D3FF2 0%, #7C3AED 100%);
    color: #ffffff;
    border-color: #8D3FF2;
}

.btn-chat:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    box-shadow: 0 6px 20px rgba(141, 63, 242, 0.3);
    color: #ffffff;
}

/* Pulsante Assegna Badge PRO - Oro */
.btn-assign-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border-color: #f59e0b;
}

.btn-assign-badge:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    color: #ffffff;
}

/* Pulsante Banna Utente - Rosso scuro */
.btn-ban-user {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border-color: #dc2626;
}

.btn-ban-user:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    color: #ffffff;
}

/* Pulsante Invia Email Verifica - Blu */
.btn-send-verification {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-color: #3b82f6;
}

.btn-send-verification:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    color: #ffffff;
}

/* Badge Email Non Verificata */
.badge-email-unverified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #fbbf24;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-actions-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .modern-action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   USER TAGS MODERNIZZATI
   ======================================== */

.modern-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.modern-user-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #7C3AED;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e9d5ff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.modern-user-tag:hover {
    background: linear-gradient(135deg, #8D3FF2 0%, #7C3AED 100%);
    color: #ffffff;
    border-color: #8D3FF2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(141, 63, 242, 0.2);
}

/* ========================================
   SIDEBAR INFO MODERNIZZATA
   ======================================== */

.modern-sidebar-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.modern-sidebar-box:hover {
    box-shadow: 0 4px 16px rgba(141, 63, 242, 0.08);
    border-color: #e9d5ff;
}

.modern-sidebar-box h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
}

.modern-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.modern-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.modern-info-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.modern-info-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 600;
    text-align: right;
}

/* Social Followers Count */
.modern-followers-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-radius: 12px;
    font-weight: 700;
    color: #7C3AED;
}

/* ========================================
   REVIEWS SECTION MODERNIZZATA
   ======================================== */

.modern-review-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.modern-review-card:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.modern-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.modern-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9d5ff;
}

.modern-review-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.modern-review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-review-rating i {
    color: #f59e0b;
    font-size: 14px;
}

.modern-review-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   FORM SECTIONS MODERNIZZATE
   ======================================== */

.modern-form-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.modern-form-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
}

.modern-form-section .form-group {
    margin-bottom: 20px;
}

.modern-form-section .labelForm {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.modern-form-section .genericInputFiled {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #1f2937;
    background-color: #f9fafb;
    transition: all 0.2s ease;
}

.modern-form-section .genericInputFiled:focus {
    outline: none;
    border-color: #8D3FF2;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(141, 63, 242, 0.1);
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.modern-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.modern-portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(141, 63, 242, 0.15);
}

.modern-portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* ========================================
   SECTION TITLES
   ======================================== */

.modern-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #8D3FF2;
    display: inline-block;
}

/* ========================================
   ANIMATION
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.4s ease-out backwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
