/**
 * 
 * Single source of truth for all SPM styles
 */

.fas, .far, .fab {
    font-size: 11px !important;
}
/* Override for specific larger icons */
.spm-stat-icon .fas,
.spm-stat-icon .far,
.spm-stat-icon .fab,
.spm-benefit-icon .fas,
.spm-benefit-icon .far,
.spm-benefit-icon .fab {
    font-size: 1.5rem !important;
}

.spm-empty-icon .fas,
.spm-empty-icon .far,
.spm-empty-icon .fab {
    font-size: 3rem !important;
}

/* Base Styles */
.spm-global {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--spm-text);
}

.spm-global * {
    box-sizing: border-box;
}

.spm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Button Styles */
.spm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--spm-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--spm-transition);
    box-shadow: var(--spm-shadow);
}

.spm-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--spm-shadow-lg);
    color: inherit;
}

.spm-btn-primary {
    background: var(--spm-brand-primary);
    color: #fff;
    border: 1px solid var(--spm-brand-primary);
}

.spm-btn-primary:hover {
    background: transparent;
    color: var(--spm-brand-primary);
    border: 1px solid var(--spm-brand-primary);
    box-shadow: none;
}

.spm-btn-secondary {
    background: var(--spm-card);
    color: var(--spm-text);
    border: 1px solid var(--spm-border);
}

.spm-btn:disabled,
.spm-btn[disabled] {
    background: #6b7280 !important;
    color: #fff !important;
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    border: none;
    transform: none !important;
}

/* Global Form Styles */
.spm-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--spm-border);
    border-radius: var(--spm-radius);
    background: var(--spm-card);
    font-size: 1rem;
    transition: var(--spm-transition);
}

.spm-input:focus {
    outline: none;
    border-color: var(--spm-brand-primary);
    box-shadow: 0 0 0 3px rgba(33, 197, 93, 0.1);
}

/* My Account Dashboard Styles */
.spm-my-account-dashboard {
    max-width: 1600px;
    margin: 0 auto;
    margin-top: -35px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.spm-dashboard-header {
    background: transparent;
    border-radius: 20px;
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.spm-user-welcome {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spm-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.spm-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.spm-avatar .avatar {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover;
}

.spm-avatar-initials {
    width: 100%;
    height: 100%;
    background: var(--spm-avatar-bg);
    color: var(--spm-avatar-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 50%;
    text-transform: uppercase;
}

.spm-user-info-title {
    line-height: 40px;
    font-size: 30px;
    color: white;
    margin: 0;
}

.spm-user-info-subtitle {
    display: block;
    font-weight: 300;
    font-size: 14px;
    color: white;
}

.spm-header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.spm-quick-stats {
    display: flex;
    gap: 1rem;
}

.spm-stat {
    text-align: center;
}

.spm-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.spm-stat-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.spm-logout-section {
    margin-top: 0.5rem;
}

.spm-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.spm-logout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.spm-logout-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Navigation Tabs - Unified */
.spm-dashboard-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding: 0.5rem 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.spm-dashboard-nav::-webkit-scrollbar {
    height: 4px;
}

.spm-dashboard-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.spm-dashboard-nav::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.spm-dashboard-nav::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.spm-nav-tab {
    background: transparent;
    border: 1px solid white;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: #ffffff;
    font-size: 1rem;
}

.spm-nav-tab:hover {
    border-color: #ffffff;
    color: #e5e7eb;
    transform: translateY(-2px);
}

.spm-nav-tab.active {
    background: transparent;
    color: white;
    border: 1px solid white;
    transform: translateY(-2px);
    box-shadow: var(--spm-shadow-lg);
}
.custom-burger-menu .burger-icon {
    display: flex !important
;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    margin-top: 30px;
}
/* Dashboard Content */
.spm-dashboard-content {
    background: transparent;
    border-radius: 20px;
    position: relative;
}

.spm-loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 2rem;
    z-index: 9999;
}
.spm-stat-number-dark, .spm-stat-label-dark{
    color: #111111;
}
.spm-tab-content{
    padding-bottom: 3rem;
}

/* Download Image Cards Styling */
/* New Download Images Grid System */
.spm-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.spm-download-item {
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.spm-download-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.spm-download-item-actions {
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}
        .spm-downloads-header {
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .spm-downloads-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        /* Hover effects removed */
        
        .spm-download-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }
        
        .spm-download-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        /* Image hover effects removed */
        
        .spm-download-overlay {
            display: none;
        }
        
        .spm-download-btn {
            background: #10b981;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .spm-download-btn:hover {
            background: #059669;
            transform: translateY(-1px);
        }
        
        .spm-download-meta {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .spm-download-date,
        .spm-download-credits {
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        .spm-download-stats {
            font-size: 0.875rem;
            color: #9ca3af;
            margin-bottom: 1rem;
            font-style: italic;
        }
        
        .spm-download-actions {
            display: flex;
            gap: 0.75rem;
        }
        
        .spm-btn {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            border: none;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
        }
        
        .spm-btn-primary {
            background: #3b82f6;
            color: white;
        }
        
        .spm-btn-primary:hover {
            background: #2563eb;
        }
        
        .spm-btn-outline {
            background: transparent;
            color: white;
            border: 1px solid  white;
        }
        
        .spm-btn-outline:hover {
            background: transparent;
            border-color: white;
        }
        
        .spm-btn-danger {
            background: #ef4444;
            color: white;
            border: 1px solid #ef4444;
        }
        
        .spm-btn-danger:hover {
            background: #dc2626;
            border-color: #dc2626;
            color: white !important;
        }
        
        .spm-btn-sm {
            padding: 0.5rem 0.75rem;
            font-size: 0.8rem;
        }
        
        .spm-empty-state {
            text-align: center;
            padding: 4rem 2rem;
            color: #6b7280;
        }
        
        .spm-empty-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }
        
        .spm-empty-state h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #374151;
            margin: 0 0 1rem 0;
        }
        
        .spm-empty-state p {
            margin: 0 0 2rem 0;
            font-size: 1rem;
        }
        
        .spm-load-more {
            text-align: center;
            padding: 2rem 0;
        }
        
        @media (max-width: 768px) {
            .spm-downloads-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .spm-download-actions {
                flex-direction: column;
            }
        }

.spm-download-item-btn {
    background: white;
    color: #1f2937;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.spm-download-item-btn:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.spm-download-item-btn.delete {
    background: #fee2e2;
    color: #dc2626;
}

.spm-download-item-btn.delete:hover {
    background: #fecaca;
}

.spm-download-item-btn.download {
    background: #22c55e;
    color: white;
}

.spm-download-item-btn.download:hover {
    background: #16a34a;
}
.spm-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #6b7280;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Dashboard Overview */
.spm-dashboard-overview {
    padding: 2rem;
}

.spm-overview-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.spm-overview-subtitle {
    color: white;
    margin-bottom: 2rem;
}

.spm-overview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.spm-overview-card {
    background: transparent;
    border: 1px solid white;
    border-radius: 20px;
    padding: 1.5rem;
}

.spm-overview-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--spm-shadow-lg);
}

.spm-card-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spm-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.spm-card-description {
    font-size: 0.875rem;
    color: white;
    margin-bottom: 1rem;
}

.spm-card-button {
    background: white;
    color: #1e293b;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--spm-radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--spm-transition);
}

.spm-card-button:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

/* Quick Actions */
.spm-quick-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spm-quick-action-btn {
    background: var(--spm-card);
    border: 1px solid var(--spm-border);
    border-radius: var(--spm-radius);
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--spm-text);
    transition: var(--spm-transition);
    flex: 1;
}

.spm-quick-action-btn:hover {
    background: var(--spm-background);
    transform: translateY(-2px);
    box-shadow: var(--spm-shadow);
    color: var(--spm-text);
    text-decoration: none;
}

/* Recent Downloads */
.spm-recent-downloads {
    background: var(--spm-card);
    border: 1px solid var(--spm-border);
    border-radius: var(--spm-radius);
    padding: 1.5rem;
}

.spm-recent-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--spm-text);
    margin-bottom: 1rem;
}

.spm-recent-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spm-recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--spm-background);
    border-radius: var(--spm-radius);
}

.spm-recent-name {
    font-weight: 500;
    color: var(--spm-text);
}

.spm-recent-date {
    font-size: 0.875rem;
    color: var(--spm-text-muted);
}

.spm-no-downloads {
    text-align: center;
    color: var(--spm-text-muted);
    padding: 2rem;
    font-style: italic;
}

/* Error States */
.spm-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 1rem;
    border-radius: var(--spm-radius);
    margin-bottom: 1rem;
}

/* Settings Sections */
.spm-settings-sections {
    max-width: 700px;
    margin: 0 auto;
}

.spm-dash-title {
    color: white;
    font-size: 3rem !important;
    text-align: center;
    margin: 0 0 1rem 0;
}

.spm-dash-subtitle {
    color: white;
    font-size: 1.2rem !important;
    text-align: center;
    margin: 0 0 2rem 0;
}

/* Profile Form Styles */
.spm-profile-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.spm-profile-avatar-section {
    margin-bottom: 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spm-profile-avatar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 4px solid #e5e7eb;
    background: #f3f4f6;
    margin-bottom: 0.5rem;
}

.spm-profile-avatar-section form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.spm-form-row {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.spm-form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.spm-form-input, .spm-input-disabled {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 400;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.spm-form-input:focus {
    outline: none;
    border-color: #21c55d;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(33,197,93,0.10);
}

.spm-input-disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}


.spm-form-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1.5px solid #e5e7eb;
    text-align: center;
}

/* Save Button Styles */
.spm-shadcn-btn-save {
    background: #651e70;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}

.spm-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spm-overview-card {
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 200px;
    margin: 0 auto;
    color: white;
}

.spm-overview-card h3 {
    margin: 0 0 1rem 0;
    color: white;
    font-weight: 400;
}
.btn-account{
    color: white;
}
.btn-account:hover{
    color: gray;
    background: transparent;
    border: 1px solid gray;
}
.spm-big-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.spm-quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.spm-btn {
    padding: 0.75rem 1.5rem;
    min-width: 145px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.spm-btn-primary {
    background: #6b7280;
    color: white;
    border: none;
}

.spm-recent-section h3 {
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 400;
}

.spm-download-item {
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.spm-download-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 20px;
}

.spm-shadcn-btn-save:hover,
.spm-shadcn-btn-save:focus,
.spm-shadcn-btn-save:active {
    background: #22c55e !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08) !important;
    outline: none !important;
    transform: none !important;
    opacity: 1 !important;
}

/* Upload/Dropzone Styles */
.spm-dropzone {
    border: 2px dashed #22c55e;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    background: #F9FAFB;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.spm-dropzone:hover {
    border-color: #22c55e;
    background: #EFF6FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.spm-dropzone.dragover {
    border-color: #22c55e;
    background: #EFF6FF;
    transform: scale(1.02);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.spm-choose-files {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Preview Grid */
.spm-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.spm-preview-item {
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spm-preview-item:hover {
    border-color: #2563EB;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.spm-preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.spm-preview-info {
    padding: 1rem;
}

.spm-preview-name {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.875rem;
}

.spm-preview-size {
    display: block;
    color: #6B7280;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.spm-preview-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.spm-preview-status.ready {
    color: #059669;
}

.spm-status-icon {
    font-weight: bold;
}

.spm-preview-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.2s ease;
    z-index: 10;
}

.spm-preview-remove:hover {
    background: rgba(220, 38, 38, 1);
    transform: scale(1.1);
}

/* Notification Styles */
.spm-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

.spm-notification-success {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #166534;
}

.spm-notification-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
}

.spm-notification-info {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1E40AF;
}

.spm-notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.spm-notification-message {
    font-weight: 500;
}

.spm-notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 1rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.spm-notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.spm-clear-all {
    background: #F3F4F6;
    color: #374151;
    border: 1px solid #D1D5DB;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.spm-clear-all:hover {
    background: #E5E7EB;
    border-color: #9CA3AF;
}

.spm-save-btn {
    background: #22c55e;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}

/* Icon Styles */
.fa-dollar-sign, .fa-credit-card, .fa-image {
    font-size: 40px;
    color: #505967 !important;
}

.download-btn {
    border: none;
    margin-right: -20px;
}

.spm-stat-icon .fa-image {
    color: white !important;
    font-size: 23px;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.payment-icon:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

.card-icon {
    height: 24px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
}

/* Checkbox Styles */
input[type="checkbox"].spm-green-checkbox {
    accent-color: #21c55d !important;
}

/* Footer Menu Bullet Removal */
.menu-footer_menu_new_new-container ul,
.menu-footer_menu_new_new-container ul li,
.menu-footer_menu_new_new-container ul li a,
.footer-menu ul,
.footer-menu ul li,
.footer-menu ul li a,
#footer-menu ul,
#footer-menu ul li,
#footer-menu ul li a,
.footer ul,
.footer ul li,
.footer ul li a {
    list-style: none !important;
    list-style-type: none !important;
}

.menu-footer_menu_new_new-container ul,
.footer-menu ul,
#footer-menu ul,
.footer ul {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.menu-footer_menu_new_new-container ul li,
.footer-menu ul li,
#footer-menu ul li,
.footer ul li {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .spm-my-account-dashboard {
        padding: 1rem;
    }
    
    .spm-dashboard-header {
        flex-direction: column;
        text-align: center;
    }
    
    .spm-header-right {
        align-items: center;
        width: 100%;
    }
    
    .spm-quick-stats {
        gap: 1rem;
        justify-content: center;
    }
    
    .spm-logout-section {
        margin-top: 1rem;
    }
    
    .spm-dashboard-nav {
        flex-wrap: wrap;
    }
    
    .spm-nav-tab {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .spm-overview-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spm-dashboard-content {
        margin: 0 -1rem;
    }
    
    .spm-profile-form {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    }
    
    .payment-icons {
        gap: 8px;
    }
    
    .card-icon {
        height: 20px;
        max-width: 35px;
    }
    
    .spm-user-info {
        line-height: 20px;
        font-size: 14px;
        color: white;
    }
    
    .custom-burger-menu {
        margin-left: 5px;
    }
    
    .custom-burger-menu .burger-button {
        border: none !important;
        background-color: transparent;
        width: 35px;
        height: 35px;
    }
    
    .custom-burger-menu .burger-icon {
        font-size: 16px;
    }
    
    .custom-burger-menu .dropdown-menu {
        min-width: 160px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .spm-dashboard-header {
        padding: 1.5rem;
    }
    
    .spm-user-welcome {
        flex-direction: column;
        text-align: center;
    }
    
    .spm-avatar {
        width: 60px;
        height: 60px;
    }
    
    .spm-user-info-title {
        font-size: 1.5rem;
    }
    
    .spm-stat-number {
        font-size: 1.5rem;
    }
    
    .spm-overview-title {
        font-size: 1.25rem;
    }
    
    .spm-overview-cards {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --spm-background: #0f172a;
        --spm-card: #1e293b;
        --spm-border: #334155;
        --spm-text: #f1f5f9;
        --spm-text-muted: #94a3b8;
    }
}

/* Animation Classes */
.spm-fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.spm-slide-up {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Modern Dashboard Components */
.dashboard-card {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid rgba(229, 231, 235, 0.6);
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease-in-out;
}

.dashboard-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.kpi-card {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid rgba(229, 231, 235, 0.6);
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease-in-out;
    animation: fadeInUp 0.5s ease-out;
}

.kpi-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.kpi-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #2563eb;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #f3f4f6;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
}

/* Modern Form Styles */
.form-input {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    background-color: white;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-approved {
    background-color: #d1fae5;
    color: #065f46;
}

.status-rejected {
    background-color: #fee2e2;
    color: #991b1b;
}

.status-featured {
    background-color: #e0e7ff;
    color: #3730a3;
}

/* Modern Table styles */
.data-table {
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table th {
    padding: 0.75rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.data-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.875rem;
}

.data-table tr:hover {
    background-color: #f9fafb;
}

/* Loading states */
.loading-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    border-top-color: #2563eb;
    animation: spin 1s linear infinite;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.loading-content {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Additional responsive design */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease-out;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .dark\:bg-gray-900 { background-color: #111827; }
    .dark\:text-white { color: #ffffff; }
    .dark\:border-gray-700 { border-color: #374151; }
}

.spm-error-message {
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #ef4444;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-align: center;
} 