/* ─── Merchant Account Application Manager — Stylesheet ─────────────────────
   Compatible with modern browsers. No framework dependencies.
   ─────────────────────────────────────────────────────────────────────────── */

/* ─── Reset & Base ───────────────────────────────────────────────────────── */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #1a3a5c;
    --primary-light: #2a5a8c;
    --accent: #0d6efd;
    --success: #198754;
    --warning: #ffc107;
    --danger: #dc3545;
    --orange: #fd7e14;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --radius: 8px;
    --radius-sm: 4px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
    --transition: 0.2s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ─── Navbar ─────────────────────────────────────────────────────────────── */

.navbar {
    background: var(--primary);
    color: #fff;
    padding: 0 24px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
}

.nav-brand-link {
    text-decoration: none !important;
    display: flex;
    align-items: center;
}

.nav-brand-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-company-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.nav-app-name {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    text-decoration: none !important;
    transition: color var(--transition);
/* ─── Page Header ────────────────────────────────────────────────────────── */

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.page-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
}

.page-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.page-company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.page-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
}
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* ─── Container ──────────────────────────────────────────────────────────── */

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

/* ─── Page Header ────────────────────────────────────────────────────────── */

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.page-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
}

.page-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #0b5ed7;
}

.btn-secondary {
    background: var(--gray-600);
    color: #fff;
}

.btn-success {
    background: var(--success);
    color: #fff;
}

.btn-warning {
    background: var(--warning);
    color: var(--gray-900);
}

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

.btn-orange {
    background: var(--orange);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    background: var(--gray-100);
    border-color: var(--gray-500);
}

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

.btn-block {
    width: 100%;
}

/* ─── Forms ──────────────────────────────────────────────────────────────── */

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.form-group small {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.required {
    color: var(--danger);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

/* ─── Application Form ───────────────────────────────────────────────────── */

.application-form .form-section {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.application-form .form-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
}

/* ─── Alerts ─────────────────────────────────────────────────────────────── */

.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    border-left: 4px solid;
    font-size: 14px;
}

.alert ul {
    margin: 4px 0 0 16px;
}

.alert-error {
    background: #f8d7da;
    color: #842029;
    border-color: #dc3545;
}

.alert-success {
    background: #d1e7dd;
    color: #0f5132;
    border-color: #198754;
}

.alert-warning {
    background: #fff3cd;
    color: #664d03;
    border-color: #ffc107;
}

.alert-info {
    background: #cff4fc;
    color: #055160;
    border-color: #0dcaf0;
}

/* ─── Stats Grid ─────────────────────────────────────────────────────────── */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ─── Dashboard Sections ─────────────────────────────────────────────────── */

.dashboard-section {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.dashboard-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

/* ─── Tables ─────────────────────────────────────────────────────────────── */

.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background: var(--gray-50);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    padding: 10px 12px;
    text-align: left;
    border-bottom: 2px solid var(--gray-200);
}

.table td {
    padding: 12px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    vertical-align: middle;
}

.table tr:hover {
    background: var(--gray-50);
}

.table .actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* ─── Auth Pages ─────────────────────────────────────────────────────────── */

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 24px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    margin-bottom: 16px;
}

.auth-logo img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.auth-company-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.auth-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.auth-header p {
    font-size: 14px;
    color: var(--gray-600);
}
}

.detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.detail-value {
    font-size: 14px;
    color: var(--gray-800);
    word-break: break-word;
}

/* ─── Notifications ──────────────────────────────────────────────────────── */

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.notification-item.unread {
    background: #e8f4fd;
    border-color: #b6d4fe;
}

.notification-message {
    font-size: 14px;
    color: var(--gray-800);
}

.notification-meta {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ─── Filter Form ────────────────────────────────────────────────────────── */

.filter-form {
    margin-bottom: 0;
}

.filter-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-row .form-group {
    margin-bottom: 0;
}

.form-group-grow {
    flex: 1;
    min-width: 200px;
}

.form-group-btn {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

/* ─── Admin Actions ──────────────────────────────────────────────────────── */

.admin-actions {
    border: 2px solid var(--primary);
}

.action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* ─── Auth Pages ─────────────────────────────────────────────────────────── */

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 24px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.auth-header p {
    font-size: 14px;
    color: var(--gray-600);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-600);
}

/* ─── Empty State ────────────────────────────────────────────────────────── */

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-600);
}

.empty-state p {
    margin-bottom: 16px;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */

.footer {
    text-align: center;
    padding: 24px;
    color: var(--gray-500);
    font-size: 13px;
    border-top: 1px solid var(--gray-200);
    margin-top: 40px;
}

/* ─── Utilities ──────────────────────────────────────────────────────────── */

.text-muted {
    color: var(--gray-600);
}

.modification-request td {
    padding: 0 !important;
}

.modification-request .alert {
    margin: 0;
    border-radius: 0;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .container {
        padding: 16px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row,
    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-row {
        flex-direction: column;
    }

    .form-group-grow {
        min-width: 100%;
    }

    .nav-links {
        gap: 8px;
        font-size: 12px;
    }

    .auth-card {
        padding: 24px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        width: 100%;
    }
}

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

    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 12px 0;
        gap: 8px;
    }
}

/* ─── Professional Dashboard ─────────────────────────────────────────────── */

.dashboard-professional {
    max-width: 1400px;
    margin: 0 auto;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.welcome-avatar img,
.avatar-placeholder-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.avatar-placeholder-lg {
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.welcome-text {
    flex: 1;
}

/* Professional Stats Grid */
.stats-grid-professional {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.welcome-text p {
    font-size: 16px;
    opacity: 0.9;
}

.welcome-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline.btn-lg {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.btn-outline.btn-lg:hover {
    background: rgba(255,255,255,0.2);
}

/* Professional Stats Grid - already defined above with 6 columns */

.stat-card-pro {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.stat-card-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.stat-total { border-left-color: #0d6efd; }
.stat-total { }
.stat-draft { }
.stat-pending { }
.stat-action { }
.stat-approved { }
.stat-rejected { }
.stat-icon {
    font-size: 36px;
    opacity: 0.8;
}

.stat-content {
    flex: 1;
}

.stat-card-pro .stat-value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-total .stat-value { color: #0d6efd; }
.stat-draft .stat-value { color: #6c757d; }
.stat-pending .stat-value { color: #ffc107; }
.stat-action .stat-value { color: #fd7e14; }
.stat-approved .stat-value { color: #198754; }
.stat-rejected .stat-value { color: #dc3545; }

.stat-card-pro .stat-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

/* Dashboard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 24px;
}

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

/* Professional Sections */
.dashboard-section-pro {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f3f5;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

/* Application Cards */
.applications-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.application-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.2s ease;
}

.application-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

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

.app-id-badge {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.app-id-label {
    color: #6c757d;
    margin-right: 6px;
}

.app-id-value {
    color: #0d6efd;
    font-family: 'Courier New', monospace;
}

.app-body {
    margin-bottom: 16px;
}

.app-title {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
}

.app-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #6c757d;
}

.modification-alert {
    background: #fff3cd;
    border-left: 4px solid #fd7e14;
    padding: 12px;
    margin-top: 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #664d03;
}

.app-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Empty State */
.empty-state-pro {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state-pro h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #495057;
}

.empty-state-pro p {
    color: #6c757d;
    margin-bottom: 20px;
}

/* Professional Notifications */
.notifications-list-pro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification-item-pro {
.notification-item-pro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.notification-item-pro.unread {
    background: #e7f3ff;
}
.notif-content {
    flex: 1;
}

.notif-message {
    font-size: 14px;
    color: #212529;
    margin-bottom: 4px;
    line-height: 1.4;
}

.notif-time {
    font-size: 12px;
    color: #6c757d;
}

.notif-link {
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    white-space: nowrap;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #212529;
    transition: all 0.2s ease;
}

.quick-action-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.qa-icon {
    font-size: 24px;
}

.qa-text {
    font-size: 14px;
    font-weight: 600;
}

/* ─── Profile Page ───────────────────────────────────────────────────────── */

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-welcome {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-avatar img,
.profile-avatar .avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
}

.avatar-placeholder {
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
}

.profile-welcome-text h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.profile-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 15px;
    opacity: 0.9;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.profile-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.profile-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f3f5;
}

/* Selfie Upload */
.selfie-upload-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.selfie-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.selfie-preview img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e9ecef;
}

.no-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
}

.no-photo span {
    font-size: 48px;
    margin-bottom: 8px;
}

.no-photo p {
    font-size: 13px;
    color: #6c757d;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .welcome-banner,
    .profile-welcome {
        padding: 24px;
    }

    .welcome-content {
        flex-direction: column;
        text-align: center;
    }

    .welcome-text h1 {
        font-size: 24px;
    }

    .welcome-actions {
        width: 100%;
        flex-direction: column;
    }

    .welcome-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid-professional {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-welcome {
        flex-direction: column;
        text-align: center;
    }

    .profile-meta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-grid-professional {
        grid-template-columns: 1fr;
    }

    .stat-card-pro {
        padding: 16px;
    }

    .stat-icon {
        font-size: 28px;
    }

    .stat-card-pro .stat-value {
        font-size: 24px;
    }
}
