/* @import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for Premium Dark Glass Design */
:root {
    --bg-gradient: radial-gradient(circle at 50% 0%, #1e1b4b 0%, #0f172a 100%);
    --card-bg: rgba(30, 41, 59, 0.45);
    --card-border: rgba(255, 255, 255, 0.08);
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.35);
    --primary-gradient: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    --secondary: #06b6d4;
    --secondary-gradient: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.15);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.15);
    --warning: #f59e0b;
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Glassmorphism utility */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}
::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.6);
}

/* App Containers */
.app-container {
    max-width: 650px;
    margin: 60px auto;
    padding: 20px;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Typography elements */
h1 {
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    text-align: center;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Progress Header Stepper */
.progress-stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    padding: 0 10px;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
    border-radius: 2px;
}

.progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.step-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1e293b;
    border: 2px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition);
}

.step-node.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.step-node.completed .step-circle {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.35);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.step-node.active .step-label {
    color: var(--text-primary);
}

.step-node.completed .step-label {
    color: var(--secondary);
}

/* Registration Form Card styling */
.form-card {
    padding: 40px;
    margin-bottom: 24px;
}

.form-segment {
    display: none;
    animation: fadeInSlide 0.4s ease-out forwards;
}

.form-segment.active {
    display: block;
}

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

.segment-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.segment-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 12px;
}

/* Form Controls */
.form-group {
    margin-bottom: 20px;
}

.form-group.half-width {
    width: 48%;
}

.form-row {
    display: flex;
    justify-content: space-between;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

label span {
    color: var(--danger);
}

.input-wrapper {
    position: relative;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1.5px solid var(--card-border);
    border-radius: 12px;
    color: white;
    font-family: var(--font-family);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    background: rgba(15, 23, 42, 0.8);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio & Checkbox buttons styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkbox-label input {
    margin-top: 4px;
    accent-color: var(--primary);
}

/* Action Buttons */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.btn-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Segment 4: Payment Button specifically */
.payment-section {
    text-align: center;
    background: rgba(139, 92, 246, 0.08);
    border: 1.5px dashed var(--primary);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.payment-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 10px 0;
}

.payment-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary-gradient);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin: 12px 0;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
    transition: var(--transition);
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
}

/* Success View styling */
.success-view {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInSlide 0.5s ease-out forwards;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success-bg);
    border: 2px solid var(--success);
    color: var(--success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
}

/* ------------------------------------------------------------- */
/* ADMIN DASHBOARD STYLING */
/* ------------------------------------------------------------- */

/* Header & Navigation */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 20px;
}

.admin-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-logo {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.admin-nav {
    display: flex;
    gap: 8px;
}

.nav-tab {
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.nav-tab.active {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.nav-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.03);
    color: white;
}

.status-badge-live {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge-live::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

/* Stats Dashboard Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.3;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.stat-card:nth-child(2) .stat-icon { color: var(--secondary); }
.stat-card:nth-child(3) .stat-icon { color: var(--success); }
.stat-card:nth-child(4) .stat-icon { color: var(--warning); }

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-val {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 4px 0;
}

/* Dual Panel Grid (Logs and Active Trackers) */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-title {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Grid & Tables for Active Sessions */
.table-wrap {
    overflow-x: auto;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    padding: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--card-border);
}

td {
    padding: 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.avatar-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.text-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Dynamic status progress indicators */
.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.badge-seg1 { background: rgba(139, 92, 246, 0.15); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.3); }
.badge-seg2 { background: rgba(6, 182, 212, 0.15); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.3); }
.badge-seg3 { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-seg4 { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }

/* Progress Mini bar */
.mini-progress {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    transition: var(--transition);
}

.mini-progress-fill.completed {
    background: var(--success);
}

/* Funnel chart using CSS Flex */
.funnel-panel {
    padding: 24px;
}

.funnel-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.funnel-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.funnel-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
}

.funnel-bar-outer {
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.funnel-bar-inner {
    height: 100%;
    background: var(--primary-gradient);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-weight: 700;
    font-size: 0.85rem;
}

.funnel-row:nth-child(2) .funnel-bar-inner { background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%); }
.funnel-row:nth-child(3) .funnel-bar-inner { background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%); }
.funnel-row:nth-child(4) .funnel-bar-inner { background: linear-gradient(135deg, #34d399 0%, #10b981 100%); }

.funnel-percent {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Live Feed / Notification Logs panel */
.feed-panel {
    padding: 24px;
    max-height: 480px;
    display: flex;
    flex-direction: column;
}

.feed-list {
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 5px;
}

.feed-item {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    display: flex;
    gap: 12px;
    animation: slideInLeft 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.feed-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.feed-icon.info { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.feed-icon.success { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.feed-icon.warning { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }

.feed-content {
    flex: 1;
}

.feed-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.feed-time {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ------------------------------------------------------------- */
/* VIEW DETAILS MODAL */
/* ------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    width: 100%;
    max-width: 600px;
    margin: 20px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 15px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: white;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 15px;
}

.info-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.info-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-top: 2px;
}

/* ------------------------------------------------------------- */
/* CONFIG SETTINGS VIEW */
/* ------------------------------------------------------------- */
.settings-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .settings-grid {
        grid-template-columns: 1fr;
    }
}

.settings-card {
    padding: 30px;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

/* CSS Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #334155;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--success);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.toast {
    background: rgba(15, 23, 42, 0.9);
    border: 1.5px solid var(--card-border);
    backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: toastIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.toast.toast-success { border-color: var(--success); }
.toast.toast-info { border-color: var(--primary); }

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    margin-left: auto;
}

.toast-close:hover {
    color: white;
}

/* Empty states */
.empty-state {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}
.empty-state-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

/* ------------------------------------------------------------- */
/* MOBILE RESPONSIVE MEDIA QUERY (< 650px) */
/* ------------------------------------------------------------- */
@media (max-width: 650px) {
    /* Form Layout Adjustment */
    .app-container {
        margin: 20px auto;
        padding: 12px;
    }

    h1 {
        font-size: 1.65rem;
    }

    .subtitle {
        font-size: 0.82rem;
        margin-bottom: 24px;
    }

    /* Stepper Scale-down */
    .progress-stepper {
        padding: 10px;
        margin-bottom: 24px;
        border-radius: 14px;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .step-label {
        font-size: 0.62rem;
    }

    .progress-line {
        top: 25px;
    }

    /* Form Card padding reduction */
    .form-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .segment-title {
        font-size: 1.2rem;
    }

    .segment-desc {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    /* Stacking row components vertically */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group.half-width {
        width: 100%;
    }

    /* Inputs adjustments */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        padding: 10px 12px;
        font-size: 0.88rem;
    }

    /* Buttons adjustments */
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .form-actions {
        gap: 10px;
    }

    /* Payment Section adjustments */
    .payment-section {
        padding: 16px;
    }

    .payment-price {
        font-size: 1.8rem;
    }

    .payment-btn {
        padding: 10px 20px;
        font-size: 0.88rem;
        width: 100%;
        text-align: center;
    }

    /* Dashboard adjustments */
    .dashboard-container {
        padding: 20px 12px;
    }

    .admin-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
    }

    .admin-title-wrap {
        flex-direction: column;
        text-align: center;
    }

    .admin-header h1 {
        text-align: center !important;
        font-size: 1.5rem;
    }

    .admin-nav {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-val {
        font-size: 1.8rem;
    }

    /* Settings view */
    .settings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .settings-card {
        padding: 20px 16px;
    }
}

