/* V2 Design System - Consolidated Styles */

/* ==========================================================================
   Base Styles
   ========================================================================== */
.v2-design-language-bg {
    background: #fafbfc;
    min-height: 100vh;
    padding-bottom: 40px;
}

.v2-main-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin: 32px 0 32px 0;
    color: #222;
}

.v2-dl-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 #e9e9e9;
    padding: 32px 32px 24px 32px;
    margin: 0 auto 32px auto;
    max-width: 900px;
}

.v2-dl-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
}

.v2-dl-subsection {
    margin-bottom: 24px;
}

.v2-dl-subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.v2-gap-2 {
    gap: 0.5rem;
}

.v2-section {
    margin-top: 32px;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 #e9e9e9;
    background: #fff;
}

/* ==========================================================================
   Typography
   ========================================================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 1.08rem;
    line-height: 1.7;
    color: #23272f;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

.v2-typography-row {
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.v2-typography-col {
    flex: 1 1 0;
    min-width: 0;
}

.v2-typography-examples {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

/* Headings */
.v2-h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ed3788;
    letter-spacing: -0.01em;
    margin-bottom: 0.3em;
    line-height: 1.15;
}

.v2-h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #ed3788;
    letter-spacing: -0.01em;
    margin-bottom: 0.25em;
    line-height: 1.18;
}

.v2-h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #23272f;
    margin-bottom: 0.2em;
    line-height: 1.22;
}

.v2-h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #23272f;
    margin-bottom: 0.18em;
}

.v2-h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #23272f;
    margin-bottom: 0.15em;
}

.v2-h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #23272f;
    margin-bottom: 0.12em;
}

/* Text Colors */
.v2-text-primary {
    color: #23272f;
}

.v2-text-secondary {
    color: #444b5a;
}

.v2-text-muted {
    color: #a0a4ae;
}

/* Text Sizes */
.v2-text-sm {
    font-size: 0.97em;
}

.v2-text-base {
    font-size: 1.08em;
}

.v2-text-lg {
    font-size: 1.18em;
}

.v2-text-xl {
    font-size: 1.32em;
}

/* Font Weights */
.v2-font-normal {
    font-weight: 400;
}

.v2-font-medium {
    font-weight: 500;
}

.v2-font-semibold {
    font-weight: 600;
}

.v2-font-bold {
    font-weight: 700;
}

.v2-font-extrabold {
    font-weight: 800;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.v2-dl-btn-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.v2-btn-pink, .v2-btn-blue, .v2-btn-grey {
    border-radius: 12px !important;
    border: none !important;
    font-weight: 600;
    box-shadow: 0 2px 8px #ed378820, 0 1.5px 4px #0001;
    padding: 0.6em 2em;
    font-size: 1.08em;
    transition: all 0.15s cubic-bezier(.4,0,.2,1);
    outline: none;
    letter-spacing: 0.01em;
    margin-bottom: 0.5em;
    position: relative;
}

.v2-btn-pink {
    background: linear-gradient(90deg, #ed3788 0%, #ee418e 100%);
    color: #fff !important;
}

.v2-btn-blue {
    background: linear-gradient(90deg, #4890e6 0%, #6bb6ff 100%);
    color: #fff !important;
}

.v2-btn-grey {
    background: linear-gradient(90deg, #a0a0a0 0%, #c0c0c0 100%);
    color: #fff !important;
}

.v2-btn-blue:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #4890e680, 0 2px 8px #4890e640;
}

.v2-btn-pink:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #ed378850, 0 2px 8px #ed378820;
}

.v2-btn-grey:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #a0a0a080, 0 2px 8px #a0a0a040;
}

.v2-btn-lg {
    font-size: 1.25em !important;
    padding: 0.85em 2.5em !important;
    text-decoration: none;
}

.v2-btn-inactive {
    border-radius: 12px !important;
    font-weight: 600;
    box-shadow: 0 2px 8px #e9e9e9;
    padding: 0.6em 2em;
    font-size: 1.08em;
    outline: none;
    letter-spacing: 0.01em;
    margin-bottom: 0.5em;
    position: relative;
    opacity: 0.7;
    pointer-events: none;
    transition: none;
}

.v2-btn-sm {
    font-size: 0.95em !important;
    padding: 0.4em 1.2em !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.v2-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 16px 0 #e9e9e9;
    position: relative;
    min-width: 0;
}

.v2-card-header {
    position: relative;
    border-radius: 1.2em 1.2em 0 0;
    overflow: hidden;
}

.v2-card-header-cover {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.v2-card-header-content {
    position: relative;
    padding: 1.5em 1.2em;
    display: flex;
    align-items: flex-end;
    gap: 1.5em;
}

/* Card Sizes */
.v2-card-small {
    flex: 0 1 25%;
    max-width: 25%;
}

.v2-card-medium {
    flex: 0 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
}

.v2-card-large {
    flex: 0 1 100%;
    max-width: 100%;
}

/* Card Images */
.v2-card-img {
    border-radius: 0.8em;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    box-shadow: 0 1px 4px #e9e9e9;
    display: block;
    position: relative;
    z-index: 1;
}

.v2-card-small .v2-card-img { height: 80px; }
.v2-card-medium .v2-card-img { height: 120px; }
.v2-card-large .v2-card-img { height: 180px; }

.v2-card-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2em;
}

.v2-card-title {
    margin-bottom: 0.3em;
    text-align: left;
    width: 100%;
}

.v2-card-title h1 {
    font-size: 1.8em;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.v2-card-text {
    font-size: 1em;
    color: #444;
    margin-bottom: 0.7em;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.v2-card-focus {
    font-size: 1.3em;
    font-weight: 700;
    color: #ed3788;
    margin-bottom: 1em;
    width: 100%;
    display: flex;
    justify-content: center;
}

.v2-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    margin-bottom: 0;
    background: #f0f2f5;
    color: #666;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.v2-card-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: flex-end;
}

.v2-card-actions-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
    justify-content: center;
    flex: 1;
    min-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.v2-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
    margin-bottom: 12px;
}

/* ==========================================================================
   Metric Cards
   ========================================================================== */
.metric-card {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.metric-blue {
    background: #e3f2fd;
    border: 1.5px solid #bbdefb;
}

.metric-green {
    background: #e8f5e9;
    border: 1.5px solid #c8e6c9;
}

.metric-orange {
    background: #fff3e0;
    border: 1.5px solid #ffe0b2;
}

.metric-value {
    font-weight: 700;
    color: #23272f;
    margin-top: 8px;
}

.metric-label {
    font-size: 0.85em;
    font-weight: 600;
    color: #666;
    text-align: center;
    position: absolute;
    top: -0.7em;
    left: 50%;
    transform: translateX(-50%);
    background: inherit;
    padding: 0 8px;
    border-radius: 4px;
    white-space: nowrap;
    border: 1.5px solid;
}

.metric-blue .metric-label {
    border-color: #bbdefb;
}

.metric-green .metric-label {
    border-color: #c8e6c9;
}

.metric-orange .metric-label {
    border-color: #ffe0b2;
}

@media (max-width: 768px) {
    .metric-card {
        width: 90px;
        height: 90px;
    }
    .metric-value {
        font-size: 1.8em;
    }
    .metric-label {
        font-size: 0.8em;
    }
}

/* ==========================================================================
   Avatars
   ========================================================================== */
.v2-avatar {
    object-fit: cover;
    box-shadow: 0 1px 4px #e9e9e9;
    border: 2px solid #fafbfc;
    background: #e9e9e9;
}

.v2-avatar-round {
    border-radius: 50%;
}

.v2-avatar-square {
    border-radius: 12px;
}

.v2-avatar-small {
    width: 64px;
    height: 64px;
}

.v2-avatar-medium {
    width: 120px;
    height: 120px;
}

.v2-avatar-large {
    width: 160px;
    height: 160px;
}

.v2-avatar-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

.v2-avatar-wrapper {
    position: relative;
    display: inline-block;
}

.v2-avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.v2-avatar-status-online {
    background-color: #2ecc71;
}

.v2-avatar-status-offline {
    background-color: #95a5a6;
}

.v2-avatar-status-away {
    background-color: #f1c40f;
}

/* ==========================================================================
   Backgrounds
   ========================================================================== */
.v2-gradient-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    border-radius: 1em;
    font-size: 1em;
    box-shadow: 0 1px 4px #e9e9e9;
    text-align: center;
}

.v2-gradient-pink {
    background: linear-gradient(90deg, #ed3788 0%, #ee418e 100%);
}

.v2-gradient-blue {
    background: linear-gradient(90deg, #4890e6 0%, #6bb6ff 100%);
}

.v2-gradient-yellow {
    background: linear-gradient(90deg, #ffc107 0%, #ffe066 100%);
    color: #222;
}

.v2-gradient-pink-blue {
    background: linear-gradient(90deg, #ed3788 0%, #4890e6 100%);
}

.v2-gradient-pink-yellow {
    background: linear-gradient(90deg, #ed3788 0%, #ffc107 100%);
    color: #222;
}

.v2-gradient-blue-yellow {
    background: linear-gradient(90deg, #4890e6 0%, #ffc107 100%);
    color: #222;
}

.v2-gradient-pink-blue-yellow {
    background: linear-gradient(90deg, #ed3788 0%, #4890e6 50%, #ffc107 100%);
    color: #222;
}

.v2-gradient-yellow-pink {
    background: linear-gradient(90deg, #fceabb 0%, #f8b6d2 100%);
    color: #ed3788;
    font-weight: 700;
}

.v2-gradient-container.v2-full-width {
    width: 100%;
    height: auto;
    min-height: 120px;
    text-align: left;
}

/* ==========================================================================
   Badges
   ========================================================================== */
.v2-dl-badge-row, .v2-dl-box-row {
    display: flex;
    gap: 18px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.v2-badge-demo {
    display: inline-block;
    padding: 0.4em 1.2em;
    font-size: 1em;
    font-weight: 600;
    border-radius: 2em;
    box-shadow: 0 1px 4px #e9e9e9;
    letter-spacing: 0.01em;
}

.v2-box-demo {
    display: inline-block;
    padding: 0.7em 2em;
    font-size: 1em;
    font-weight: 600;
    border-radius: 1em;
    box-shadow: 0 1px 4px #e9e9e9;
    letter-spacing: 0.01em;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.v2-modern-form-demo {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.6em;
}

.v2-modern-input-group,
.v2-modern-check-group,
.v2-modern-radio-group,
.v2-modern-toggle-group {
    margin-bottom: 0.2em;
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.v2-modern-input {
    width: 100%;
    padding: 1.1em;
    border: 1.5px solid #e0e0e0;
    border-radius: 0.7em;
    font-size: 1.08em;
    background: #fafbfc;
    color: #222;
    transition: border 0.18s, box-shadow 0.18s;
    outline: none;
    box-shadow: 0 1px 4px #e9e9e9;
}

.v2-modern-input:focus {
    border-color: #ed3788;
    box-shadow: 0 2px 8px #ed378850;
    background: #fff;
}

.v2-modern-label {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
    position: static;
    background: none;
    padding: 0;
    pointer-events: auto;
    transition: none;
}

.v2-modern-input:focus + .v2-modern-label,
.v2-modern-input:not(:placeholder-shown) + .v2-modern-label,
textarea.v2-modern-input:focus + .v2-modern-label,
textarea.v2-modern-input:not(:placeholder-shown) + .v2-modern-label {
    left: 0;
    background: none;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
    position: static;
    margin-bottom: 0.5rem;
}

/* Informational labels for stats and non-form elements */
.v2-info-label {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: block;
}

/* Custom required/valid/invalid styles for modern form */
.v2-modern-input:invalid {
    border-color: #ed3788;
    box-shadow: 0 0 0 2px #ed378850;
}
.v2-modern-input:valid {
    border-color: #2ecc71;
    box-shadow: 0 0 0 2px #2ecc7130;
}
.v2-modern-input:invalid + .v2-modern-label {
    color: #ed3788;
}
.v2-modern-input:valid + .v2-modern-label {
    color: #2ecc71;
}

.v2-modern-input.v2-modern-input-valid {
    border-color: #2ecc71 !important;
    box-shadow: 0 0 0 2px #2ecc7130 !important;
}
.v2-modern-input.v2-modern-input-invalid {
    border-color: #ed3788 !important;
    box-shadow: 0 0 0 2px #ed378850 !important;
}

.v2-modern-input.v2-modern-input-valid + .v2-modern-label {
    color: #2ecc71 !important;
}
.v2-modern-input.v2-modern-input-invalid + .v2-modern-label {
    color: #ed3788 !important;
}

/* ==========================================================================
   Icons
   ========================================================================== */
.v2-icon-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 1em;
    align-items: center;
}

.v2-icon-demo {
    font-size: 2.2em;
    color: #4890e6;
    background: #fafbfc;
    border-radius: 0.5em;
    padding: 0.3em 0.5em;
    box-shadow: 0 1px 4px #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Star rating styles for feedback cards */
.v2-icon-demo .fa-star,
.v2-icon-demo .fa-star-half-alt,
.v2-icon-demo .fa-star-half {
    color: #ffc107;
    font-size: 1.2em;
    margin-right: 0.08em;
    vertical-align: middle;
    text-shadow: 0 1px 2px #e9e9e9;
}
.v2-icon-demo .far.fa-star {
    color: #e9e9e9;
    font-size: 1.2em;
    margin-right: 0.08em;
    vertical-align: middle;
    text-shadow: 0 1px 2px #e9e9e9;
}

/* ==========================================================================
   Messages
   ========================================================================== */
.v2-dl-message-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 12px;
}

.v2-message-demo {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 220px;
    max-width: 320px;
    padding: 1.1em 1.5em;
    border-radius: 1em;
    box-shadow: 0 1px 4px #e9e9e9;
    font-size: 1em;
    font-weight: 500;
    background: #fff;
}

.v2-message-success {
    background: #d4edda;
    color: #222;
}

.v2-message-info {
    background: #d1ecf1;
    color: #222;
}

.v2-message-warning {
    background: #fff3cd;
    color: #222;
}

.v2-message-error {
    background: #f8d7da;
    color: #222;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 1200px) {
    .v2-card-small { 
        max-width: 40%; 
        flex-basis: 40%; 
    }
    .v2-card-medium { 
        max-width: calc(50% - 16px);
        flex-basis: calc(50% - 16px);
    }
}

@media (max-width: 900px) {
    .v2-card-small, 
    .v2-card-medium, 
    .v2-card-large {
        max-width: 100%;
        flex-basis: 100%;
    }
    
    .v2-card-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .v2-user-avatar-wrapper {
        margin-top: -40px;
    }

    .v2-avatar-large {
        width: 120px;
        height: 120px;
    }

    .v2-typography-row {
        flex-direction: column;
        gap: 16px;
    }

    .v2-h1 { font-size: 2.1rem; }
    .v2-h2 { font-size: 1.5rem; }
    .v2-h3 { font-size: 1.2rem; }
    .v2-h4 { font-size: 1.1rem; }
    .v2-h5 { font-size: 1rem; }
    .v2-h6 { font-size: 0.95rem; }
    p { font-size: 1rem; }
}

@media (max-width: 768px) {
    .v2-metric {
        min-width: 80px;
    }
    
    .v2-metric-value {
        font-size: 1rem;
    }
    
    .v2-card-actions-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        width: 100%;
    }
}

/* Utility: Add Inter font if available */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   V2 Header Styles
   ========================================================================== */
.v2-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5em 2em 0 2em;
    gap: 2em;
    min-height: 64px;
    background: #fff;
    box-shadow: 0 1px 4px #e9e9e9;
}

.v2-header-logo {
    margin-right: 2em;
}

.v2-header-nav ul {
    display: flex;
    gap: 2em;
    list-style: none;
}

.v2-header-nav-item {
    position: relative;
    font-weight: 600;
    color: #444b5a;
}

.v2-header-link {
    color: #a0a4ae;
    text-decoration: none;
    font-size: 0.9em;
    padding: 0.5em 0;
    display: inline-block;
    transition: color 0.15s;
}

.v2-header-nav-item.active .v2-header-link {
    color: #ed3788;
}

.v2-header-nav-item.active .v2-header-link::after {
    content: '';
    display: block;
    height: 3px;
    background: #ed3788;
    border-radius: 2px;
    margin-top: 4px;
    width: 100%;
    position: relative;
}

.v2-header-nav-arrow {
    font-size: 0.9em;
    margin-left: 0.3em;
}

.v2-header-user {
    display: flex;
    align-items: center;
    gap: 2em;
    margin-left: auto;
}

.v2-header-icon-link {
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: #888;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08em;
    position: relative;
    transition: color 0.15s;
}

.v2-header-icon-link:hover {
    color: #23272f;
}

.v2-header-icon {
    display: flex;
    align-items: center;
    font-size: 1.3em;
}

.v2-header-icon-label {
    color: #444b5a;
    font-size: 1em;
    font-weight: 500;
}

.v2-header-notifications {
    position: relative;
}

.v2-header-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ed2323;
    color: #fff;
    font-size: 0.85em;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.15em 0.6em;
    min-width: 1.5em;
    text-align: center;
    box-shadow: 0 1px 4px #e9e9e9;
    border: 2px solid #fff;
}

.v2-header-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px #e9e9e9;
}

/* Navigation Icon Circle Styles - for header icons */
.nav-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-icon-circle-bg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.2s ease;
}


.nav-icon-circle:hover .nav-icon-circle-bg {
    background-color: #e8e8e8;
}

.nav-icon-circle-bg.nav-icon-profile {
    padding: 0;
    overflow: hidden;
    background-color: transparent;
}

.nav-icon-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-icon-profile-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
}

.nav-icon-profile-indicator svg {
    width: 8px;
    height: 8px;
    color: #333;
    transform: rotate(180deg);
}

/* Notification badge styling - only for header bar icon badges (not mobile menu) */
.menu-header .right-menu .nav-icon-badge:not(.d-none),
.menu-header .right-menu .notificationCount:not(.d-none) {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #ed3788;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Mobile menu: notification count stays inline next to "Notifications" label */
.menu-header .mobile-menu .notificationCount:not(.d-none) {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: 8px;
    border: none;
    box-shadow: none;
    vertical-align: middle;
}

/* Ensure d-none always hides elements */
.d-none {
    display: none !important;
}

/* Hide notification badges that have content "0" or are empty */
.notificationCount:empty,
.nav-icon-badge:empty {
    display: none !important;
}

/* Ensure basket badge stays hidden when count is 0 */
#basket-count-badge[style*="display: none"],
#basket-count-badge[style*="display:none"] {
    display: none !important;
}

/* Hide circular icons on mobile - they're shown in mobile menu instead */
@media screen and (max-width: 991px) {
    .menu-header .nav-icon-circle {
        display: none;
    }
    /* Hide notification item and badge in header bar on mobile so count only shows next to "Notifications" in mobile menu */
    .menu-header .right-menu .nav-notification {
        display: none !important;
    }
    .menu-header .navbar .notificationCount,
    .menu-header .navbar .nav-icon-badge {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .v2-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1em;
        padding: 1em;
    }
    .v2-header-logo, .v2-header-user {
        justify-content: center;
    }
    .v2-header-nav ul {
        flex-direction: column;
        gap: 0.5em;
        align-items: center;
    }
    .v2-header-user {
        margin-left: 0;
    }
}

/* Stats/Metrics Styles */
.dl-metrics-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .metric-card {
        width: 90px;
        height: 90px;
    }
    .metric-value {
        font-size: 1.8em;
    }
    .metric-label {
        font-size: 0.8em;
    }
}

.v2-website-socials-row {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0.5em 0 0.5em 0;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .v2-website-socials-row {
        gap: 10px;
        justify-content: flex-start;
    }
}

/* ==========================================================================
   Table Styles
   ========================================================================== */

.v2-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9e9e9;
    margin-top: 12px;
    margin-bottom: 12px;
}

.v2-table thead {
    background: linear-gradient(90deg, #fafbfc 60%, #f3f4f6 100%);
    border-bottom: 2px solid #e9e9e9;
}

.v2-table th {
    padding: 22px 28px 18px 28px;
    text-align: left;
    font-weight: 700;
    color: #23272f;
    font-size: 1.08em;
    letter-spacing: 0.01em;
    white-space: nowrap;
    background: none;
}

.v2-table td {
    padding: 18px 28px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    font-size: 1.05em;
    vertical-align: middle;
    background: #fff;
}

.v2-table tbody tr:last-child td {
    border-bottom: none;
}

.v2-table tbody tr {
    transition: background 0.18s;
}

.v2-table tbody tr:hover {
    background-color: #fafbfc;
}

.v2-table-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.v2-table .v2-badge-demo {
    font-size: 0.93em;
    padding: 0.45em 1.2em;
    border-radius: 1em;
    font-weight: 600;
    box-shadow: none;
    background: #f5f5f5;
    color: #23272f;
    letter-spacing: 0.01em;
}

.table-demo {
    width: 100%;
    margin: 0;
    padding: 0;
}

.v2-table .v2-btn-blue.v2-btn-sm,
.v2-table .v2-btn-pink.v2-btn-sm {
    min-width: 64px;
    font-size: 0.98em;
    padding: 0.38em 1.1em;
    border-radius: 8px !important;
    box-shadow: 0 1px 4px #e9e9e9;
    transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}

.v2-table .v2-btn-blue.v2-btn-sm:hover,
.v2-table .v2-btn-pink.v2-btn-sm:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #ed378850, 0 2px 8px #ed378820;
}

@media (max-width: 900px) {
    .v2-table th,
    .v2-table td {
        padding: 14px 12px;
    }
    .v2-table .v2-btn-blue.v2-btn-sm,
    .v2-table .v2-btn-pink.v2-btn-sm {
        min-width: 48px;
        font-size: 0.95em;
        padding: 0.32em 0.7em;
    }
}

.v2-user-cover-img {
    width: 100%;
}

/* ==========================================================================
   Social Media Platform Styles
   ========================================================================== */

/* Facebook Styles */
.v2-gradient-facebook {
    background: linear-gradient(90deg, #1877f2 0%, #3b5998 100%);
}

.v2-btn-facebook {
    background: linear-gradient(90deg, #1877f2 0%, #3b5998 100%);
    color: #fff !important;
}

.v2-btn-facebook:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #1877f280, 0 2px 8px #1877f240;
}

.metric-facebook-blue,
.metric-facebook-green,
.metric-facebook-orange {
    background: #e7f0ff;
    border: 1.5px solid #1877f2;
}

.metric-facebook-blue .metric-label,
.metric-facebook-green .metric-label,
.metric-facebook-orange .metric-label {
    border-color: #1877f2;
}

/* Twitter/X Styles */
.v2-gradient-twitter {
    background: linear-gradient(90deg, #1da1f2 0%, #14171a 100%);
}

.v2-btn-twitter {
    background: linear-gradient(90deg, #1da1f2 0%, #14171a 100%);
    color: #fff !important;
}

.v2-btn-twitter:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #1da1f280, 0 2px 8px #1da1f240;
}

.metric-twitter-blue,
.metric-twitter-green,
.metric-twitter-orange {
    background: #e8f5fd;
    border: 1.5px solid #1da1f2;
}

.metric-twitter-blue .metric-label,
.metric-twitter-green .metric-label,
.metric-twitter-orange .metric-label {
    border-color: #1da1f2;
}

/* Instagram Styles */
.v2-gradient-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.v2-btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
}

.v2-btn-instagram:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #dc274380, 0 2px 8px #dc274340;
}

.metric-instagram-blue,
.metric-instagram-green,
.metric-instagram-orange {
    background: #fdf2f8;
    border: 1.5px solid #e1306c;
}

.metric-instagram-blue .metric-label,
.metric-instagram-green .metric-label,
.metric-instagram-orange .metric-label {
    border-color: #e1306c;
}

/* YouTube Styles */
.v2-gradient-youtube {
    background: linear-gradient(90deg, #ff0000 0%, #cc0000 100%);
}

.v2-btn-youtube {
    background: linear-gradient(90deg, #ff0000 0%, #cc0000 100%);
    color: #fff !important;
}

.v2-btn-youtube:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #ff000080, 0 2px 8px #ff000040;
}

.metric-youtube-blue,
.metric-youtube-green,
.metric-youtube-orange {
    background: #ffecec;
    border: 1.5px solid #ff0000;
}

.metric-youtube-blue .metric-label,
.metric-youtube-green .metric-label,
.metric-youtube-orange .metric-label {
    border-color: #ff0000;
}

/* TikTok Styles */
.v2-gradient-tiktok {
    background: linear-gradient(90deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
}

.v2-btn-tiktok {
    background: linear-gradient(90deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
    color: #fff !important;
}

.v2-btn-tiktok:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #fe2c5580, 0 2px 8px #fe2c5540;
}

.metric-tiktok-blue,
.metric-tiktok-green,
.metric-tiktok-orange {
    background: #f0f0f0;
    border: 1.5px solid #25F4EE;
}

.metric-tiktok-blue .metric-label,
.metric-tiktok-green .metric-label,
.metric-tiktok-orange .metric-label {
    border-color: #25F4EE;
}

/* Pinterest Styles */
.v2-gradient-pinterest {
    background: linear-gradient(90deg, #e60023 0%, #bd081c 100%);
}

.v2-btn-pinterest {
    background: linear-gradient(90deg, #e60023 0%, #bd081c 100%);
    color: #fff !important;
}

.v2-btn-pinterest:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #e6002380, 0 2px 8px #e6002340;
}

.metric-pinterest-blue,
.metric-pinterest-green,
.metric-pinterest-orange {
    background: #ffecef;
    border: 1.5px solid #e60023;
}

.metric-pinterest-blue .metric-label,
.metric-pinterest-green .metric-label,
.metric-pinterest-orange .metric-label {
    border-color: #e60023;
}

/* LinkedIn Styles */
.v2-gradient-linkedin {
    background: linear-gradient(90deg, #0077b5 0%, #00a0dc 100%);
}

.v2-btn-linkedin {
    background: linear-gradient(90deg, #0077b5 0%, #00a0dc 100%);
    color: #fff !important;
}

.v2-btn-linkedin:hover {
    filter: brightness(1.08) saturate(1.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px #0077b580, 0 2px 8px #0077b540;
}

.metric-linkedin-blue,
.metric-linkedin-green,
.metric-linkedin-orange {
    background: #e6f3f8;
    border: 1.5px solid #0077b5;
}

.metric-linkedin-blue .metric-label,
.metric-linkedin-green .metric-label,
.metric-linkedin-orange .metric-label {
    border-color: #0077b5;
}

/* Platform-specific card badges */
.v2-card-badge-facebook {
    background: #1877f2;
    color: #fff;
}

.v2-card-badge-twitter {
    background: #1da1f2;
    color: #fff;
}

.v2-card-badge-instagram {
    background: #e1306c;
    color: #fff;
}

.v2-card-badge-youtube {
    background: #ff0000;
    color: #fff;
}

.v2-card-badge-tiktok {
    background: #000000;
    color: #fff;
}

.v2-card-badge-pinterest {
    background: #e60023;
    color: #fff;
}

.v2-card-badge-linkedin {
    background: #0077b5;
    color: #fff;
}

.v2-bio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.v2-bio-edit-btn {
    background: none;
    border: none;
    color: #7d7d7d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.v2-bio-edit-btn:hover {
    background: #f5f5f5;
    color: #ed3788;
}

.v2-modern-textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1.2em;
    line-height: 1.5;
}

.v2-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.v2-modal-content {
    background: #fff;
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    position: relative;
}

.v2-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v2-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
}

.v2-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7d7d7d;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.v2-modal-close:hover {
    color: #ed3788;
}

.v2-modal-body {
    padding: 1.5rem;
}

.v2-modal-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.v2-modal-actions-right {
    display: flex;
    gap: 1rem;
}

.v2-btn-primary {
    background: linear-gradient(90deg, #ed3788 0%, #ee418e 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v2-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 55, 136, 0.2);
}

/* Website Wizard Styles */
.v2-website-edit-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, #ed3788 0%, #ee418e 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px #ed378850;
    transition: all 0.2s ease;
}

.v2-website-edit-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px #ed378880;
}

.v2-wizard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.v2-wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.v2-wizard-steps::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9e9e9;
    z-index: 1;
}

.v2-wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.v2-wizard-step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #7d7d7d;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.v2-wizard-step.active .v2-wizard-step-number {
    background: linear-gradient(90deg, #ed3788 0%, #ee418e 100%);
    border-color: #ed3788;
    color: #fff;
}

.v2-wizard-step.completed .v2-wizard-step-number {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #fff;
}

.v2-wizard-step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7d7d7d;
    text-align: center;
}

.v2-wizard-step.active .v2-wizard-step-label {
    color: #ed3788;
    font-weight: 600;
}

.v2-wizard-content {
    position: relative;
    min-height: 300px;
}

.v2-wizard-step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.v2-wizard-step-content.active {
    display: block;
}

.v2-wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9e9e9;
}

.v2-wizard-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    gap: 1rem;
}

.v2-wizard-loading-spinner {
    width: 3rem;
    height: 3rem;
    border: 3px solid #e9e9e9;
    border-top-color: #ed3788;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.v2-code-block {
    display: block;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    font-family: monospace;
    margin: 0.5rem 0;
    border: 1px solid #e9e9e9;
    color: #444;
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .v2-wizard-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .v2-wizard-step {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .v2-wizard-steps::before {
        display: none;
    }
}

/* UserWebsites Card Menu Styles (migrated from UserWebsites.php) */
.v2-card-header {
    position: relative;
}
.v2-card-menu {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 20;
    cursor: pointer;
    font-size: 1.5em;
    color: #888;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    padding: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}
.v2-card-menu:hover {
    background: #f5f5f5;
    color: #ed3788;
}
.v2-card-menu-dropdown {
    z-index: 30;
}
.v2-card-header img {
    z-index: 1;
    position: relative;
}

/* Step 5 Approval Information Styles */
.v2-approval-info {
    text-align: center;
    padding: 2rem 1rem;
}

.v2-approval-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.v2-approval-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.v2-approval-content {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.v2-approval-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.v2-approval-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.v2-approval-steps li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    line-height: 1.5;
}

.v2-approval-steps li:last-child {
    border-bottom: none;
}

.v2-approval-steps li strong {
    color: #1f2937;
}

.v2-approval-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.v2-approval-note p {
    margin: 0;
    color: #92400e;
    font-size: 0.9rem;
}

.v2-approval-note strong {
    color: #78350f;
}

/* Delete Confirmation Modal Styles */
.v2-modal-small {
    max-width: 500px;
    width: 90%;
}

.v2-delete-confirmation {
    text-align: center;
    padding: 1rem 0;
}

.v2-delete-icon {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.v2-delete-confirmation h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.v2-delete-confirmation p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.v2-delete-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.v2-delete-actions .v2-btn {
    min-width: 120px;
    padding: 0.75rem 1.5rem;
}

.v2-btn-danger {
    background-color: #dc2626;
    color: white;
    border: 1px solid #dc2626;
}

.v2-btn-danger:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.v2-btn-secondary {
    background-color: #6b7280;
    color: white;
    border: 1px solid #6b7280;
}

.v2-btn-secondary:hover {
    background-color: #4b5563;
    border-color: #4b5563;
}

/* ==========================================================================
   Notification Dropdown Styles
   ========================================================================== */

/* Modern Notification Dropdown Menu */
.notificationList.dropdown-menu,
#notificationList.dropdown-menu {
    max-width: 420px !important;
    min-width: 380px !important;
    padding: 12px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 252, 0.95) 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Individual Notification Item */
#notificationList .dropdown-item,
.notificationList .dropdown-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    margin-bottom: 8px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    color: #23272f !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: none !important;
    min-width: auto !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    cursor: pointer !important;
}

#notificationList .dropdown-item:last-child,
.notificationList .dropdown-item:last-child {
    margin-bottom: 0 !important;
}

#notificationList .dropdown-item:hover,
.notificationList .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(237, 55, 136, 0.06) 0%, rgba(72, 144, 230, 0.06) 100%) !important;
    border-color: rgba(237, 55, 136, 0.2) !important;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(237, 55, 136, 0.1) !important;
}

/* Unread Indicator (pink dot) */
#notificationList .dropdown-item::before,
.notificationList .dropdown-item::before {
    content: "" !important;
    flex-shrink: 0 !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #ed3788 0%, #ee418e 100%) !important;
    box-shadow: 0 2px 6px rgba(237, 55, 136, 0.4) !important;
    margin-top: 4px !important;
    margin-left: 0 !important;
    display: block !important;
    animation: notificationPulse 2s infinite;
}

@keyframes notificationPulse {
    0%, 100% {
        box-shadow: 0 2px 6px rgba(237, 55, 136, 0.4);
    }
    50% {
        box-shadow: 0 2px 6px rgba(237, 55, 136, 0.4), 0 0 0 4px rgba(237, 55, 136, 0.1);
    }
}

/* Mark all as read link styling */
#notificationList .notification-mark-all-read,
.notificationList .notification-mark-all-read {
    background: linear-gradient(135deg, rgba(237, 55, 136, 0.08) 0%, rgba(237, 55, 136, 0.04) 100%) !important;
    border: 1px dashed rgba(237, 55, 136, 0.3) !important;
    justify-content: center !important;
    font-weight: 600 !important;
    color: #ed3788 !important;
}

#notificationList .notification-mark-all-read::before,
.notificationList .notification-mark-all-read::before {
    display: none !important;
}

#notificationList .notification-mark-all-read:hover,
.notificationList .notification-mark-all-read:hover {
    background: #ed3788 !important;
    color: white !important;
    border-style: solid !important;
    transform: none !important;
}

/* Empty state styling */
#notificationList .notification-empty,
.notificationList .notification-empty {
    justify-content: center !important;
    color: #666666 !important;
    background: rgba(250, 251, 252, 0.8) !important;
    border: 1px dashed rgba(0, 0, 0, 0.1) !important;
}

#notificationList .notification-empty::before,
.notificationList .notification-empty::before {
    display: none !important;
}

/* Notification text styling */
.notification-text {
    flex: 1;
    text-align: left;
}