/* Admin Photo Selection Styles */
.photo-picker {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
}

.photo-card {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    border-radius: 0.375rem;
    overflow: hidden;
}

.photo-card:hover {
    border-color: #0ABAB5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.photo-card.selected {
    border-color: #0ABAB5;
    background-color: rgba(10, 186, 181, 0.1);
}

.photo-card.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #0ABAB5;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.photo-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.375rem 0.375rem 0 0;
}

.photo-card .card-body {
    padding: 0.5rem;
    text-align: center;
    background: white;
}

.photo-card .photo-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #495057;
    margin: 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.photo-card .photo-meta {
    font-size: 0.7rem;
    color: #6c757d;
    margin: 0;
}

.photo-picker-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1rem;
}

.selection-counter {
    background: rgba(10, 186, 181, 0.2);
    color: #0ABAB5;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.selection-counter.warning {
    background: #e0e0e0;
    color: #666666;
}

.selection-counter.error {
    background: #d0d0d0;
    color: #333333;
}

.category-tabs .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.category-tabs .nav-link.active {
    background-color: #0ABAB5;
    color: white;
}

/* Hide default radio/checkbox inputs */
.photo-card input[type="radio"],
.photo-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Animation for selection */
.photo-card {
    transition: all 0.3s ease;
}

.photo-card:active {
    transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .photo-card img {
        height: 100px;
    }
    
    .photo-picker {
        max-height: 300px;
    }
}

/* Full-Screen Photo Picker Overlay */
.photo-picker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.photo-picker-overlay.active {
    display: flex;
}

/* Overlay Header */
.overlay-header {
    position: sticky;
    top: 0;
    background: rgba(10, 186, 181, 0.95);
    color: white;
    padding: 1rem;
    z-index: 10;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.overlay-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.overlay-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Overlay Category Tabs */
.overlay-tabs {
    margin-top: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-tabs .nav-link {
    color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.375rem 0.375rem 0 0;
    margin-right: 0.25rem;
}

.overlay-tabs .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.overlay-tabs .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid white;
}

/* Overlay Grid */
.overlay-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.overlay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Large Photo Cards for Overlay */
.overlay-photo-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
}

.overlay-photo-card:hover {
    border-color: #0ABAB5;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.overlay-photo-card.selected {
    border-color: #0ABAB5;
    background-color: rgba(10, 186, 181, 0.1);
    transform: translateY(-2px);
}

.overlay-photo-card.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #0ABAB5;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.overlay-photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.overlay-photo-card .card-body {
    padding: 1rem;
    text-align: center;
    background: white;
}

.overlay-photo-card .photo-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.overlay-photo-card .photo-meta {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0;
}

/* Overlay Footer */
.overlay-footer {
    position: sticky;
    bottom: 0;
    background: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 1rem 2rem;
    z-index: 10;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay-selection-counter {
    background: rgba(10, 186, 181, 0.2);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.overlay-selection-counter.warning {
    background: rgba(160, 160, 160, 0.2);
    color: #FFFFFF;
}

.overlay-actions {
    display: flex;
    gap: 1rem;
}

.overlay-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Responsive Overlay */
@media (max-width: 1200px) {
    .overlay-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .overlay-photo-card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .overlay-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .overlay-photo-card img {
        height: 160px;
    }
    
    .overlay-content {
        padding: 1rem;
    }
    
    .overlay-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* ===========================================================
   Premium Dashboard Layer (Task #30)
   Shared, additive — used by /dashboard and /admin/.
   Does NOT modify existing admin sub-page rules above.
   =========================================================== */

.dash-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10,186,181,0.25);
    border-radius: 18px;
    padding: 2rem 2.25rem;
    margin-bottom: 2rem;
    background:
        radial-gradient(ellipse at top right, rgba(10,186,181,0.18), transparent 60%),
        linear-gradient(135deg, rgba(10,186,181,0.10), rgba(8,221,221,0.04) 60%, rgba(0,0,0,0)),
        #0a1015;
}
.dash-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.35;
    pointer-events: none;
}
.dash-hero > * { position: relative; z-index: 1; }

.dash-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0ABAB5;
    padding: 0.3rem 0.85rem;
    border: 1px solid rgba(10,186,181,0.4);
    border-radius: 999px;
    background: rgba(10,186,181,0.08);
    margin-bottom: 0.85rem;
}

.dash-h1 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.015em;
}
.dash-h1 .accent {
    background: linear-gradient(135deg, #0ABAB5 0%, #5DCED8 60%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dash-sub {
    color: #9aa1a8;
    font-size: 1rem;
    margin: 0;
}

.dash-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: rgba(10,186,181,0.12);
    border: 1px solid rgba(10,186,181,0.4);
    color: #5DCED8;
    margin-right: 0.45rem;
}
.dash-meta-pill.muted {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.12);
    color: #c0c5ca;
}
.dash-meta-pill.success {
    background: rgba(40,167,69,0.15);
    border-color: rgba(40,167,69,0.4);
    color: #6ddc88;
}

/* Premium stat tile */
.dash-stat-tile {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(13,20,24,0.95) 0%, rgba(6,10,12,0.95) 100%);
    border: 1px solid rgba(10,186,181,0.18);
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.dash-stat-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, #0ABAB5, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.dash-stat-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(10,186,181,0.45);
    box-shadow: 0 16px 36px rgba(10,186,181,0.18);
}
.dash-stat-tile:hover::before { transform: scaleX(1); }
.dash-stat-tile .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a9097;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.dash-stat-tile .value {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.dash-stat-tile .sub {
    font-size: 0.78rem;
    color: #8a9097;
    margin-top: 0.45rem;
    letter-spacing: 0.4px;
}
.dash-stat-tile .icon {
    position: absolute;
    right: 1.1rem;
    top: 1.1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background:
        radial-gradient(circle at 30% 30%, rgba(122,223,217,0.35), transparent 65%),
        linear-gradient(135deg, rgba(10,186,181,0.55), rgba(10,186,181,0.18));
    border: 1px solid rgba(122,223,217,0.55);
    color: #fff;
    font-size: 1.05rem;
    text-shadow: 0 0 10px rgba(122,223,217,0.85);
    box-shadow: 0 6px 16px rgba(10,186,181,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}
.dash-stat-tile.accent-amber .icon {
    background: linear-gradient(135deg, rgba(255,193,7,0.55), rgba(255,193,7,0.15));
    border-color: rgba(255,193,7,0.5);
    text-shadow: 0 0 10px rgba(255,193,7,0.85);
}
.dash-stat-tile.accent-amber .value { color: #ffd24a; }
.dash-stat-tile.accent-purple .icon {
    background: linear-gradient(135deg, rgba(176,91,255,0.55), rgba(123,47,190,0.15));
    border-color: rgba(176,91,255,0.5);
    text-shadow: 0 0 10px rgba(176,91,255,0.85);
}
.dash-stat-tile.accent-success .icon {
    background: linear-gradient(135deg, rgba(40,167,69,0.55), rgba(40,167,69,0.15));
    border-color: rgba(40,167,69,0.5);
    text-shadow: 0 0 10px rgba(110,220,140,0.85);
}
.dash-stat-tile.accent-success .value { color: #6ddc88; }

/* Section card (replaces flat .card on dashboards) */
.dash-section-card {
    background: linear-gradient(180deg, rgba(13,20,24,0.85) 0%, rgba(6,10,12,0.85) 100%);
    border: 1px solid rgba(10,186,181,0.18);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.dash-section-card .dash-header {
    padding: 1.05rem 1.4rem;
    border-bottom: 1px solid rgba(10,186,181,0.18);
    background: linear-gradient(180deg, rgba(10,186,181,0.05), transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.dash-section-card .dash-header h5 {
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.dash-section-card .dash-header h5 i { color: #0ABAB5; }
.dash-section-card .dash-body { padding: 1.5rem 1.4rem; }
.dash-section-card.flush .dash-body { padding: 0.5rem 0; }

/* Quick-action tile */
.dash-action-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(180deg, rgba(13,20,24,0.95) 0%, rgba(6,10,12,0.95) 100%);
    border: 1px solid rgba(10,186,181,0.18);
    border-radius: 14px;
    padding: 1.4rem 0.9rem 1.25rem;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.dash-action-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, #0ABAB5, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.dash-action-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(10,186,181,0.5);
    box-shadow: 0 14px 32px rgba(10,186,181,0.20);
    text-decoration: none;
    color: #fff !important;
}
.dash-action-tile:hover::before { transform: scaleX(1); }
.dash-action-tile .icon-wrap {
    width: 54px;
    height: 54px;
    margin: 0 auto 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background:
        radial-gradient(circle at 30% 30%, rgba(122,223,217,0.35), transparent 65%),
        linear-gradient(135deg, rgba(10,186,181,0.55), rgba(10,186,181,0.18));
    border: 1px solid rgba(122,223,217,0.55);
    color: #fff;
    font-size: 1.4rem;
    text-shadow: 0 0 12px rgba(122,223,217,0.85);
    box-shadow: 0 8px 20px rgba(10,186,181,0.30), inset 0 1px 0 rgba(255,255,255,0.15);
}
.dash-action-tile .title {
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.2rem;
    letter-spacing: 0.2px;
}
.dash-action-tile .sub {
    font-size: 0.74rem;
    color: #9aa1a8;
    letter-spacing: 0.3px;
}

.dash-action-tile.cat-people .icon-wrap {
    background: linear-gradient(135deg, rgba(176,91,255,0.55), rgba(123,47,190,0.18));
    border-color: rgba(176,91,255,0.5);
    text-shadow: 0 0 12px rgba(176,91,255,0.85);
}
.dash-action-tile.cat-services .icon-wrap {
    background: linear-gradient(135deg, rgba(255,193,7,0.55), rgba(255,193,7,0.15));
    border-color: rgba(255,193,7,0.5);
    text-shadow: 0 0 12px rgba(255,193,7,0.85);
}
.dash-action-tile.cat-media .icon-wrap {
    background: linear-gradient(135deg, rgba(255,107,53,0.55), rgba(255,107,53,0.15));
    border-color: rgba(255,107,53,0.5);
    text-shadow: 0 0 12px rgba(255,107,53,0.85);
}
.dash-action-tile.cat-money .icon-wrap {
    background: linear-gradient(135deg, rgba(40,167,69,0.55), rgba(40,167,69,0.15));
    border-color: rgba(40,167,69,0.5);
    text-shadow: 0 0 12px rgba(110,220,140,0.85);
}
.dash-action-tile.cat-gold .icon-wrap {
    background: linear-gradient(135deg, rgba(212,175,55,0.7), rgba(255,193,7,0.18));
    border-color: rgba(255,215,0,0.55);
    text-shadow: 0 0 12px rgba(255,215,0,0.85);
}
.dash-action-tile.cat-purple .icon-wrap {
    background: linear-gradient(135deg, rgba(123,47,190,0.65), rgba(176,91,255,0.18));
    border-color: rgba(176,91,255,0.55);
    text-shadow: 0 0 12px rgba(176,91,255,0.85);
}

/* Premium dark table */
.dash-table {
    width: 100%;
    color: #d0d4d8;
    font-size: 0.92rem;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}
.dash-table thead th {
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #8a9097;
    padding: 0.85rem 1.4rem;
    border-bottom: 1px solid rgba(10,186,181,0.2);
    background: transparent;
}
.dash-table tbody td {
    padding: 0.95rem 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: middle;
    color: #d0d4d8;
}
.dash-table tbody tr:hover td { background: rgba(10,186,181,0.04); }
.dash-table tbody tr:last-child td { border-bottom: none; }
.dash-table .project-name { color: #fff; font-weight: 600; }

.dash-status-badge {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dash-status-confirmed { background: rgba(10,186,181,0.18); color: #5DCED8; border: 1px solid rgba(10,186,181,0.45); }
.dash-status-pending   { background: rgba(255,193,7,0.15);  color: #ffc107; border: 1px solid rgba(255,193,7,0.4); }
.dash-status-completed { background: rgba(123,47,190,0.18); color: #B05BFF; border: 1px solid rgba(123,47,190,0.45); }
.dash-status-cancelled { background: rgba(220,53,69,0.18);  color: #ff7080; border: 1px solid rgba(220,53,69,0.4); }
.dash-status-default   { background: rgba(255,255,255,0.06); color: #c0c5ca; border: 1px solid rgba(255,255,255,0.12); }

.dash-chip {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #c0c5ca;
}
.dash-chip.free { background: rgba(40,167,69,0.18); border-color: rgba(40,167,69,0.4); color: #6ddc88; }

/* Membership / loyalty premium look */
.dash-membership {
    background:
        radial-gradient(ellipse at top right, rgba(10,186,181,0.16), transparent 60%),
        linear-gradient(135deg, rgba(10,186,181,0.10), rgba(8,221,221,0.03) 70%, rgba(0,0,0,0)),
        #0a1015;
    border: 1px solid rgba(10,186,181,0.3);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.dash-membership .dash-header {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(10,186,181,0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dash-membership .dash-header h5 {
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.dash-membership .dash-body { padding: 1.75rem 1.5rem; }
.dash-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #001012;
}
.dash-loyalty-stat .label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a9097;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.dash-loyalty-stat .value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.dash-loyalty-stat .value .unit { font-size: 0.85rem; color: #8a9097; font-weight: 500; margin-left: 0.2rem; }
.dash-loyalty-stat .value.accent { color: #0ABAB5; }
.dash-loyalty-stat .sub { font-size: 0.78rem; color: #8a9097; margin-top: 0.4rem; }

.dash-progress-row { margin-top: 1.5rem; }
.dash-progress-row .label-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}
.dash-progress-row .label-row strong { color: #fff; font-weight: 700; }
.dash-progress-row .label-row strong i { color: #0ABAB5; margin-right: 0.3rem; }
.dash-progress-row .label-row small { color: #8a9097; letter-spacing: 0.5px; }
.dash-progress-row .progress {
    height: 12px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 999px;
    overflow: hidden;
}
.dash-progress-row.thin .progress { height: 8px; }
.dash-progress-row .progress-bar {
    background: linear-gradient(135deg, #0ABAB5, #08DDDD);
}

/* Empty state on dark dashboards */
.dash-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #8a9097;
}
.dash-empty i { color: rgba(10,186,181,0.4); margin-bottom: 1rem; }
.dash-empty a { color: #0ABAB5; font-weight: 600; text-decoration: none; }
.dash-empty a:hover { color: #5DCED8; text-decoration: underline; }

/* File list in member dashboard */
.dash-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dash-file-item:last-child { border-bottom: none; }
.dash-file-item .file-name { color: #fff; font-weight: 600; font-size: 0.92rem; margin: 0 0 0.2rem; }
.dash-file-item .file-meta { color: #8a9097; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.dash-file-item .download-btn {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(10,186,181,0.15);
    border: 1px solid rgba(10,186,181,0.4);
    color: #5DCED8;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}
.dash-file-item .download-btn:hover {
    background: rgba(10,186,181,0.3);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .dash-hero { padding: 1.5rem 1.25rem; }
    .dash-membership .dash-body { padding: 1.25rem; }
}
