body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: #ffffff;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #000000;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-left-logo {
    width: 150px;
    height: 50px;
}

.header-left-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-right-login {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.content {
    background: #f1f1f1;
    min-height: calc(100vh - 80px);
}

.content:has(.hero-section) {
    padding: 0;
}

.content:not(:has(.hero-section)) {
    padding: 20px;
}


/* ===== Home / Landing Page ===== */

.hero-section {
    background: linear-gradient(135deg, #212121 0%, #29293f 50%, #16213e 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 123, 0, 0.08) 0%, transparent 60%);
    animation: hero-glow 8s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff7b00, #c95b00);
    color: #ffffff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 123, 0, 0.4);
}

/* Pricing */

.pricing-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin: 0 0 50px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #ff7b00;
    transform: scale(1.04);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-5px);
}

.pricing-badge {
    background: linear-gradient(135deg, #ff7b00, #c95b00);
    color: #ffffff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    padding: 35px 30px 25px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card-header h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: #333;
    font-weight: 700;
}

.pricing-setup {
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 600;
    color: #ff7b00;
}

.pricing-amount {
    font-size: 56px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.pricing-period {
    font-size: 16px;
    color: #999;
}

.pricing-card-body {
    padding: 25px 30px;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    padding-left: 28px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff7b00;
    font-weight: 700;
    font-size: 16px;
}

.pricing-card-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.pricing-btn {
    display: block;
    padding: 14px;
    background: linear-gradient(135deg, #ff7b00, #c95b00);
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #c95b00, #8d4002);
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
}

.pricing-disclaimer {
    text-align: center;
    color: #999;
    font-size: 12px;
    max-width: 700px;
    margin: 40px auto 0;
    line-height: 1.6;
}

/* Buyout */

.buyout-section {
    background: linear-gradient(135deg, #000000, #1a1a2e);
    padding: 80px 20px;
    text-align: center;
}

.buyout-content {
    max-width: 650px;
    margin: 0 auto;
}

.buyout-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.buyout-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.buyout-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #ff7b00;
    color: #ff7b00;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.buyout-btn:hover {
    background: #ff7b00;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 123, 0, 0.3);
}

/* Footer */

.home-footer {
    text-align: center;
    padding: 25px 20px;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
}

.home-footer p {
    margin: 0;
    color: #999;
    font-size: 14px;
}

.home-footer a {
    color: #ff7b00;
    text-decoration: none;
    font-weight: 600;
}

.home-footer a:hover {
    text-decoration: underline;
}

/* Responsive - Landing Page */

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .buyout-content h2 {
        font-size: 26px;
    }
}

/* Login Form Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 20px;
}

.login-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 25px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.login-btn, .create-user-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff7b00, #c95b00);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover, .create-user-btn:hover {
    background: linear-gradient(135deg, #c95b00, #8d4002);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 81, 0, 0.3);
}

.login-btn:active, .create-user-btn:active {
    transform: translateY(0);
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #c33;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.form-footer p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.form-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Subscription Info Styles */
.subscription-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-greeting {
    margin: 0 0 15px 0;
    color: #555;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 8px;
}

.subscription-info h3 {
    margin: 0 0 25px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid #ff7b00;
    padding-bottom: 10px;
}

.subscription-info-text{
    color: #008ab7c7;
    background: #add8e67a;
    padding: 8px;
    border-radius: 5px;
    border: solid 1px;
    font-size: 13px;
}

.subscription-info .info-value a, .edit-info p a {
    color: #007bff;
}

.subscription-info .info-value a:hover, .edit-info p a:hover {
    text-decoration: underline;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.info-value {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-align: right;
}

.no-data {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px 0;
    margin: 0;
}

/* Payments Info Styles */
.payments-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.payments-info h3 {
    margin: 0 0 25px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid #ff7b00;
    padding-bottom: 10px;
}

.payment-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.payment-item:last-child {
    margin-bottom: 0;
}

.payment-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-details:last-child {
    border-bottom: none;
}

.payment-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.payment-value {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.payment-value.status-completed {
    color: #28a745;
    font-weight: 600;
}

.payment-value.status-pending {
    color: #ffc107;
    font-weight: 600;
}

.payment-value.status-failed {
    color: #dc3545;
    font-weight: 600;
}

.payment-status {
    text-transform: capitalize;
}

/* Payment Button Styles */
.payment-button {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff7b00, #c95b00);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.payment-button:hover {
    background: linear-gradient(135deg, #9c4c01, #c95b00);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(167, 108, 40, 0.3);
}

.payment-button:active {
    transform: translateY(0);
}

/* Payment Logic Enhancements */
.payment-item.failed {
    border-left: 4px solid #dc3545;
    background: rgba(220, 53, 69, 0.08);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.15);
}

.payment-item.overdue {
    border-left: 4px solid #dc3545;
    background: rgba(220, 53, 69, 0.08);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.15);
}

.payment-item.due_soon {
    border-left: 4px solid #ffc107;
    background: rgba(255, 193, 7, 0.08);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.15);
}

.payment-item.completed {
    border-left: 4px solid #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.payment-item.pending {
    border-left: 4px solid #6c757d;
    background: rgba(108, 117, 125, 0.05);
}

/* Payment Status Badges */
.payment-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.payment-status-badge.pending {
    background: rgba(108, 117, 125, 0.2);
    color: #383d41;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.payment-status-badge.due_soon {
    background: rgba(255, 193, 7, 0.2);
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
}

.payment-status-badge.overdue {
    background: rgba(220, 53, 69, 0.2);
    color: #721c24;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.payment-status-badge.completed {
    background: rgba(40, 167, 69, 0.2);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.payment-status-badge.failed {
    background: rgba(220, 53, 69, 0.2);
    color: #721c24;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Payment Summary Styles */
.payment-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.payment-summary-item {
    text-align: center;
}

.payment-summary-label {
    display: block;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.payment-summary-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.urgent-indicator {
    display: inline-block;
    margin-left: 5px;
    animation: urgent-pulse 1.5s infinite;
}

@keyframes urgent-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.payment-summary-value.pending {
    color: #ffc107;
}

.payment-summary-value.completed {
    color: #28a745;
}

/* Payment History Styles */
.payment-history {
    margin-top: 20px;
}

.payment-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.payment-history-title {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.payment-filter {
    display: flex;
    gap: 10px;
}

.payment-filter button {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.payment-filter button.active,
.payment-filter button:hover {
    background: #ff7b00;
    color: white;
    border-color: #ff7b00;
}

/* Dashboard Layout */
.dashboard-layout {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-sidebar {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.dashboard-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.dashboard-layout.blurred {
    filter: blur(5px);
    pointer-events: none;
}

.paywall-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.paywall-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

.paywall-content h2 {
    color: #ff7b00;
    margin-bottom: 20px;
}

.paywall-content p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.paywall-content .btn {
    background: linear-gradient(135deg, #ff7b00, #c95b00);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.paywall-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 123, 0, 0.4);
}


/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-layout {
        flex-direction: column;
        gap: 20px;
    }

    .dashboard-sidebar {
        flex: none;
        order: 1;
    }

    .dashboard-main {
        order: 2;
    }

    .subscriptions-table th,
    .subscriptions-table td {
        padding: 12px 15px;
        font-size: 13px;
    }

    .user-greeting {
        font-size: 16px;
    }
    
    .dashboard-sidebar {
        position: static;
    }

    .payment-history-header {
        display: block;
    }

    .payment-filter {
        display: grid;
    }

    .payments-info {
        width: fit-content;
    }

}

@media (max-width: 480px) {
    .login-form {
        padding: 30px 20px;
        margin: 20px;
    }

    .login-form h2 {
        font-size: 24px;
    }
}

/* Admin Edit Styles */
.admin-edit-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.admin-edit-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-edit-form h2 {
    margin: 0 0 25px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid #ff7b00;
    padding-bottom: 10px;
}

.admin-edit-form h3 {
    margin:0 0 15px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.edit-info p {
    margin: 10px 0;
    color: #333;
    font-size: 15px;
}

.edit-info.error {
    background: rgba(220, 53, 69, 0.1);
    border-left-color: #dc3545;
}

.edit-subscription, .edit-payments, .edit-info {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.edit-subscription p {
    margin: 10px 0;
    color: #333;
    font-size: 15px;
}


.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-row span {
    font-size: 14px;
    color: #333;
}

.payment-row .status-completed {
    color: #28a745;
    font-weight: 600;
    width:12%;
    text-align: end;
}

.payment-row .status-pending {
    color: #ffc107;
    font-weight: 600;
    width:12%;
    text-align: end;
}

.payment-row .status-failed {
    color: #dc3545;
    font-weight: 600;
    width:12%;
    text-align: end;
}

.return-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.return-btn:hover {
    background: #545b62;
    color: white;
    text-decoration: none;
}

/* Admin Dashboard Styles */
.admin-dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.admin-users-table, .create-user-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    overflow:auto;
}

.admin-users-table h2, .create-user-container h2 {
    margin: 0 0 25px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid #ff7b00;
    padding-bottom: 10px;
}

.admin-users-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.admin-users-table th {
    background: #ff7b00;
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.admin-users-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: #333;
    font-size: 14px;
}

.admin-users-table tr:last-child td {
    border-bottom: none;
}

.admin-users-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.3);
}

.admin-users-table tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.1);
}

.admin-users-table tr:hover td {
    background: rgba(255, 123, 0, 0.1);
}

/* Status Badges */
.status-active {
    background: rgba(40, 167, 69, 0.2);
    color: #155724;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-inactive {
    background: rgba(108, 117, 125, 0.2);
    color: #383d41;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.admin-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #856404;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.user-badge {
    background: rgba(0, 123, 255, 0.2);
    color: #004085;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.no-data {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px 0;
    font-size: 16px;
}

/* Action Buttons */
.action-btn {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.action-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    text-decoration: none;
    color: white;
}

.edit-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.edit-btn:hover {
    background: linear-gradient(135deg, #218838, #1aa085);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.delete-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.delete-btn:hover {
    background: linear-gradient(135deg, #c82333, #a71d2a);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.upload-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.upload-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    position: relative;
}

.upload-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.upload-close:hover {
    color: #333;
}


/* Responsive Admin Table */
@media (max-width: 768px) {
    .admin-dashboard-container {
        padding: 10px;
    }

    .admin-users-table {
        padding: 20px;
    }

    .admin-users-table th,
    .admin-users-table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .admin-users-table th {
        font-size: 11px;
    }

    .action-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .admin-users-table {
        overflow-x: auto;
    }

    .admin-users-table table {
        min-width: 800px;
    }
}