/* --- Base & Typography --- */
:root {
    --primary-color: #000000;
    --accent-color: #07280e;
    --text-color: #ffffff;
    --glass-bg: rgba(10, 25, 12, 0.25); /* Semi-transparent green for glass */
    --border-color: rgba(255, 255, 255, 0.18);
}

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(-45deg, #000000, var(--accent-color), #000000, #0f5720);
    background-size: 400% 400%;
    color: var(--text-color);
    animation: gradientBG 25s ease infinite;
    margin: 0;
    padding: 40px 20px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-color);
}

p {
    font-weight: 300;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes moveShapes {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -60px); }
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* --- Background Animated Shapes --- */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), #0f5720);
    filter: blur(150px);
    animation: moveShapes 40s ease-in-out infinite alternate;
}

.shape1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.shape2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -150px;
    animation-duration: 50s;
}

/* --- Main Layout & Header --- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.main-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out;
    position: relative;
}

.logo {
    max-width: 180px;
    margin-bottom: 15px;
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.btn-platform {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0f5720 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(7, 40, 14, 0.4);
}

.btn-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 40, 14, 0.6);
    color: #ffffff !important;
    text-shadow: none !important;
}

.main-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(7, 40, 14, 0.5);
    animation: fadeIn 1s ease-out 0.4s backwards;
}

/* --- Glassmorphism Form --- */
.glass-form, .glass-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 30px;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.form-section {
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 10px;
}

.form-section legend {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding: 0 10px;
    width: 100%;
    border-bottom: 2px solid var(--accent-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea {    
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* --- Question Blocks & Special Elements --- */
.question-block {
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent-color);
    padding: 20px;
    margin-top: 25px;
    border-radius: 8px;
}

.question-block h4 {
    margin-top: 0;
    color: var(--text-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.checkbox-group label a {
    font-weight: 600;
    text-decoration: underline;
}

/* --- File Upload Styling --- */
input[type="file"] {
    color: #ccc;
    font-family: 'Poppins', sans-serif;
}

input[type="file"]::file-selector-button {
    margin-right: 15px;
    border: none;
    background: var(--accent-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color .2s ease-in-out;
}

input[type="file"]::file-selector-button:hover {
    background: #0f5720;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-color);
    width: 100%;
    font-size: 1.1rem;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #0f5720;
    box-shadow: 0 0 15px var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-color); /* Keep text white on hover */
}

/* --- Payment Page Specifics --- */
.payment-info {
    margin-bottom: 25px;
}

.payment-info h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-info p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.payment-details-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
.payment-details-box p {
    margin: 8px 0;
}
.payment-details-box strong {
    color: #fff;
}

.terms-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.terms-box p {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.terms-box ul {
    list-style-position: inside;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.terms-box ul li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.help-text {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin-top: 8px;
    font-style: italic;
}

.form-note {
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    border-radius: 5px;
}

.form-note p {
    color: #ffc107;
    font-size: 0.85rem;
    margin: 0;
}

/* --- Footer --- */
.glass-footer {
    margin: 40px auto 0;
    max-width: 800px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-links a {
    margin: 0 8px;
}

/* --- Admin Dashboard Styles --- */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.admin-header h1 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #98FB98 0%, #2E8B57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.admin-header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.logout-btn {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.5);
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.stat-card h3 {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.stat-card .stat-icon {
    font-size: 2rem;
    float: right;
    opacity: 0.3;
}

.stat-card.submissions {
    border-left: 4px solid #2E8B57;
}

.stat-card.payments {
    border-left: 4px solid #667eea;
}

.stat-card.pending {
    border-left: 4px solid #ffc107;
}

.stat-card.approved {
    border-left: 4px solid #98FB98;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #b0b0b0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border-color: var(--accent-color);
    text-shadow: none !important;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0f5720 100%);
    border-color: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(7, 40, 14, 0.4);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #98FB98;
    border-radius: 3px 3px 0 0;
}

/* Dashboard Cards */
.dashboard-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.dashboard-card h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card h2::before {
    content: '📊';
    font-size: 1.8rem;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

table thead {
    background: rgba(7, 40, 14, 0.4);
}

table th {
    color: #98FB98;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

table td {
    color: #e0e0e0;
    font-size: 0.95rem;
}

table tbody tr {
    transition: all 0.2s ease;
}

table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.01);
}

table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.1);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
}

.empty-state::before {
    content: '📭';
    display: block;
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 1.1rem;
}

/* Action Buttons */
.action-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 8px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0f5720 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(7, 40, 14, 0.3);
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 40, 14, 0.5);
    color: #ffffff !important;
    text-shadow: none !important;
}

.delete-btn {
    background: linear-gradient(135deg, #f5576c 0%, #e0485d 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
}

.delete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.5);
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Status Badges */
.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.status-approved {
    background: rgba(46, 139, 87, 0.2);
    color: #98FB98;
    border: 1px solid #2E8B57;
}

.status-rejected {
    background: rgba(245, 87, 108, 0.2);
    color: #ffb3c1;
    border: 1px solid #f5576c;
}

.status-under_review {
    background: rgba(102, 126, 234, 0.2);
    color: #a8b6ff;
    border: 1px solid #667eea;
}

/* Messages */
.success-message {
    background: rgba(46, 139, 87, 0.2);
    border-left: 4px solid #2E8B57;
    color: #98FB98;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message::before {
    content: '✓';
    font-size: 1.5rem;
    font-weight: bold;
}

.error-message {
    background: rgba(245, 87, 108, 0.2);
    border-left: 4px solid #f5576c;
    color: #ffb3c1;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-message::before {
    content: '⚠';
    font-size: 1.5rem;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .social-links {
        margin-top: 10px;
    }
    .social-links a {
        margin: 0 8px;
    }
    .container {
        padding: 10px;
    }
    .glass-form {
        padding: 20px;
    }
    .main-header h1 {
        font-size: 2rem;
    }
    body {
        padding: 20px 10px;
    }
    .btn-platform {
        position: static;
        display: block;
        margin: 20px auto;
        width: fit-content;
    }
}
/* ==================================================================
   MODERN ADMIN DASHBOARD STYLES - CLEAN & PROFESSIONAL
   ================================================================== */

/* Admin Container */
.admin-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header with Glass Effect */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 35px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.admin-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.admin-header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.logout-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.logout-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Stats Grid - Glass Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--stat-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.15;
}

.stat-card.submissions { --stat-color: #10b981; }
.stat-card.payments { --stat-color: #3b82f6; }
.stat-card.pending { --stat-color: #f59e0b; }
.stat-card.approved { --stat-color: #06b6d4; }

/* Tabs - Modern Design */
.tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-shadow: none !important;
}

.tab-btn.active {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981 !important;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

/* Dashboard Card - Glass Effect */
.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.dashboard-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-card h2::before {
    content: '📊';
    font-size: 2rem;
}

/* Table - Clean Modern Design */
.table-container {
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

table th,
table td {
    padding: 18px 16px;
    text-align: left;
}

table thead {
    background: rgba(255, 255, 255, 0.05);
}

table th {
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

table td {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

table tbody tr {
    transition: all 0.2s ease;
}

table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* Action Buttons - Modern Style */
.action-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 0.85rem;
    margin-right: 8px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.view-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.view-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
    color: #ffffff !important;
    text-shadow: none !important;
}

.delete-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.delete-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Status Badges - Modern Pills */
.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid #f59e0b;
}

.status-approved {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid #10b981;
}

.status-rejected {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid #ef4444;
}

.status-under_review {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid #3b82f6;
}

.status-verified {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
    border: 1px solid #06b6d4;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.empty-state::before {
    content: '📭';
    display: block;
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Success/Error Messages */
.success-message {
    background: rgba(16, 185, 129, 0.15);
    border-left: 4px solid #10b981;
    color: #34d399;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.success-message::before {
    content: '✓';
    font-size: 1.5rem;
    font-weight: bold;
}

.error-message {
    background: rgba(239, 68, 68, 0.15);
    border-left: 4px solid #ef4444;
    color: #f87171;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.error-message::before {
    content: '⚠';
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }

    .admin-header h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .dashboard-card {
        padding: 25px;
    }

    table th,
    table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}
