/* Local Oxygen Font Definition (No External Requests) */
@font-face {
    font-family: 'Oxygen';
    src: url('/storage/assets/font/Oxygen/Oxygen.woff2') format('woff2'),
         url('/storage/assets/font/Oxygen/Oxygen-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oxygen';
    src: url('/storage/assets/font/Oxygen/Oxygen-Bold.ttf') format('truetype');
    font-weight: 700 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oxygen';
    src: url('/storage/assets/font/Oxygen/Oxygen-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-dark: #0b1512;
    --bg-card: rgba(16, 28, 24, 0.8);
    --primary: #10b981;
    --primary-hover: #059669;
    --accent: #34d399;
    --accent-dark: #047857;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(16, 185, 129, 0.14);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Oxygen', sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(5, 150, 105, 0.08) 0px, transparent 50%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: transparent;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand img {
    vertical-align: middle;
    border-radius: 8px;
}

.brand-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-admin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.nav-admin-btn:hover {
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.4);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(16, 185, 129, 0.1);
    color: var(--text-main);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.2);
}

.lang-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.lang-btn {
    color: var(--text-muted);
    padding: 0.25rem 0.6rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.2s;
}

.lang-btn.active {
    background: var(--primary);
    color: white;
}

/* Container */
.container {
    flex: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    background: rgba(6, 25, 19, 0.95);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
    cursor: pointer;
}

/* Timonix Apps Launcher */
.apps-launcher-dropdown {
    position: relative;
    margin-right: 0.5rem;
}

.nav-icon-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    opacity: 0.8;
}

.nav-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.apps-dropdown-menu {
    position: absolute;
    top: 100%;
    right: -10px;
    margin-top: 0.8rem;
    width: 320px;
    background: rgba(16, 28, 24, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 1.5rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
}

.apps-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0.5rem;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: var(--text-main);
    padding: 0.5rem;
    border-radius: 12px;
    transition: background 0.2s;
}

.app-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.app-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.app-item span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* User Avatar Dropdown */
.user-avatar-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.avatar-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    outline: none;
}

.avatar-nav-img {
    width: 38px;
    height: 38px;
    border-radius: 14%;
    object-fit: cover;
    border: 2px solid #10b981;
    transition: transform 0.2s, box-shadow 0.2s;
}

.avatar-nav-img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.avatar-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 125%;
    width: 220px;
    background: #0f172a;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    padding: 0.75rem;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.avatar-dropdown-menu.active {
    display: block;
}

.avatar-menu-header {
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.5rem;
}

.avatar-menu-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.avatar-menu-email {
    font-size: 0.8rem;
    color: #94a3b8;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.avatar-menu-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s;
}

.avatar-menu-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.avatar-menu-link.logout-link {
    color: #f87171;
    font-weight: 600;
    margin-top: 0.25rem;
}

.avatar-menu-link.logout-link:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Left Sidebar Pill Navigation Menu & Legal Footer */
.side-menu-wrapper {
    width: 280px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.side-menu-container {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: relative;
}

.side-menu-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 5px 18px 5px 5px;
    border-radius: 10px;
    background: linear-gradient(90deg, #10b9812e 0%, #05966917 45%, #0478570f 85%, transparent 100%);
    box-shadow: -9px -1px 8px -2px rgb(16 185 129 / 14%);
    color: #f8fafc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.side-menu-item:hover {
    background: linear-gradient(90deg, #10b98188 0%, #05966944 45%, #04785722 85%, transparent 100%);
    transform: translateX(4px);
}

.side-menu-item.active {
    border-radius: 10px;
    background: linear-gradient(90deg, #10b981 0%, #059669 45%, #04785782 85%, transparent 100%);
    box-shadow: -8px 7px 14px -2px rgba(16, 185, 129, 0.24);
}

.side-menu-badge {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.side-menu-item.active .side-menu-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.side-menu-item:hover .side-menu-badge {
    transform: scale(1.05);
}

.side-menu-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-menu-legal-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.5;
}

.side-menu-legal-copy {
    margin-bottom: 0.35rem;
    color: #94a3b8;
    font-weight: 500;
}

.side-menu-legal-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
}

.side-menu-legal-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.side-menu-legal-links a:hover {
    color: #10b981;
}

/* Layout Wrapper & Columns */
.profile-layout-wrapper {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    height: stretch;
    margin: 1rem 0;
}

.layout-sidebar-col {
    position: sticky;
    top: 90px;
    height: calc(100vh - 114px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
    padding-left: 15px;
}

.layout-content-col {
    flex: 1;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 580px;
    justify-content: space-between;
}

/* Home / Dashboard Central Profile Header & Search */
.home-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 1.5rem 1rem;
    text-align: center;
}

.avatar-rings-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin-bottom: 1.25rem;
}

.avatar-ring-outer {
    position: absolute;
    inset: -16px;
    border-radius: 14%;
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    pointer-events: none;
}

.avatar-ring-inner {
    position: absolute;
    inset: -8px;
    border-radius: 14%;
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    pointer-events: none;
}

.avatar-img-glowing {
    width: 130px;
    height: 130px;
    border-radius: 14%;
    object-fit: cover;
    border: 2.5px solid #10b981;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.35);
}

.home-user-name {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.home-user-email {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.home-badge-premium {
    font-size: 0.85rem;
    color: #34d399;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.12);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: inline-block;
}

.home-search-wrapper {
    max-width: 680px;
    margin: 1.5rem auto 2rem auto;
    width: 100%;
}

.home-search-label {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.home-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.home-search-icon {
    position: absolute;
    left: 18px;
    color: #94a3b8;
    pointer-events: none;
}

.search-input-box {
    width: 100%;
    padding: 0.95rem 1.25rem 0.95rem 3.2rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid #10b981;
    border-radius: 14px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.25);
    transition: all 0.2s ease;
}

.search-input-box:focus {
    border-color: #34d399;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.35);
}

.home-privacy-notice {
    margin-top: 4rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.85rem 1.25rem;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
}

.home-privacy-notice svg {
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .profile-layout-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .layout-sidebar-col,
    .side-menu-wrapper,
    .side-menu-container {
        width: 100%;
        max-width: 100%;
    }
}

/* SPA Loader Animation */
.spa-loader-logo {
    width: 60px;
    height: 60px;
    animation: spa-pulse 1.5s infinite ease-in-out;
}

@keyframes spa-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* Styles moved from profile.php */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 840px;
    margin: 2rem auto;
    backdrop-filter: blur(12px);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.profile-card.is-loading {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

.section-box {
    background: rgba(16, 28, 24, 0.4);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.form-hint {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--primary);
}

.form-control[readonly] {
    background: rgba(0, 0, 0, 0.4);
    color: #64748b;
    cursor: not-allowed;
}

/* Custom Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    min-width: 46px;
    height: 26px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #94a3b8;
    transition: left .3s ease, background-color .3s ease, transform .3s ease;
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: var(--primary);
    border-color: var(--primary);
}

input:focus+.toggle-slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.toggle-slider:before {
    left: calc(100% - 21px); /* 18px szerokości kółka + 3px marginesu */
    transform: none;
    background-color: #ffffff;
}

.btn-save {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
}

.btn-save:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.alert-box {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.alert-success {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}

.app-tile {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.app-tile:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.app-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.app-name {
    font-weight: 700;
    color: #f8fafc;
    font-size: 0.95rem;
}

.app-status {
    font-size: 0.75rem;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Legal Pages */
.legal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 2rem auto;
    line-height: 1.7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legal-card h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.legal-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.legal-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Utilities for profile/security.php & others */
.svg-icon {
    vertical-align: middle;
    margin-right: 6px;
}
.svg-primary { stroke: var(--primary); }
.svg-success { stroke: #10b981; }
.svg-danger { stroke: #ef4444; }

.section-form-2fa {
    margin-top: 0;
}
.text-muted-sm {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}
.checkbox-lg {
    width: 20px;
    height: 20px;
    accent-color: #10b981;
    cursor: pointer;
}
.toggle-label {
    font-weight: 600;
    color: white;
    cursor: pointer;
}
.btn-mt { margin-top: 1rem; }
.section-mt-2 { margin-top: 2rem; }

.sessions-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.badge-current {
    font-size: 0.75rem;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.4);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
}
.session-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.session-item.current {
    border-color: var(--primary);
}
.session-location {
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.session-details {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}
.no-sessions {
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.sessions-category-title {
    color: #f8fafc;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sessions-category-title.mt-1 { margin: 1rem 0 0.5rem 0; }
.sessions-category-title.mt-0 { margin: 0.5rem 0 0.5rem 0; }
.btn-danger-flex {
    background: #ef4444;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-setting-item {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.text-muted-xs {
    font-size: 0.85rem;
    color: #94a3b8;
}
.mb-1 { margin-bottom: 0.25rem; }
.btn-export {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.2);
    text-decoration: none;
    text-align: center;
}
.section-danger {
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}
.text-danger { color: #ef4444; }
.text-white-bold { color: #f8fafc; font-size: 0.95rem; margin-bottom: 1rem; font-weight: 600; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.btn-danger-gradient {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}
.mt-0 { margin-top: 0; }
.mb-1-25 { margin-bottom: 1.25rem; }
.badge-blue { background: rgba(59,130,246,0.2); color: #60a5fa; }
.text-center { text-align: center; }
.py-1 { padding: 1rem 0; }
.app-modal-img { width: 70px; height: 70px; border-radius: 14px; object-fit: cover; margin-bottom: 1rem; }
.app-modal-title { font-size: 1.4rem; color: #f8fafc; font-weight: 800; margin-bottom: 0.25rem; }
.app-modal-status { font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.app-modal-box { background: rgba(15,23,42,0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 1rem; text-align: left; margin-bottom: 1.5rem; }
.app-modal-label { color: #94a3b8; font-size: 0.8rem; display: block; }
.app-modal-val { color: white; font-size: 0.9rem; }
.flex-wrap { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.35rem; }
.badge-gray { background: rgba(255,255,255,0.08); padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.8rem; color: #cbd5e1; }
.flex-center { display: flex; gap: 0.75rem; justify-content: center; }
.btn-outline-white { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; }
.btn-solid-danger { background: #ef4444; border: none; color: white; }
.profile-name { font-size: 1.6rem; font-weight: 800; color: #f8fafc; }
.profile-username { color: #94a3b8; font-size: 0.95rem; }
.flex-between-center { display: flex; justify-content: space-between; align-items: center; }
.text-success-sm { font-size: 0.75rem; color: #10b981; font-weight: 600; }
.text-primary-sm { font-size: 0.75rem; color: #60a5fa; text-decoration: none; font-weight: 600; }
.col-span-full { grid-column: 1 / -1; }
.section-subtitle { margin-top: 1rem; margin-bottom: 0.5rem; color: #f8fafc; font-size: 0.95rem; font-weight: 600; }
.verify-box { max-width: 520px; margin: 2rem auto; }
.sms-limit-box { background: rgba(255, 255, 255, 0.05); padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 0.85rem; display: flex; justify-content: space-between; align-items: center; }
.sms-code-input { letter-spacing: 4px; font-size: 1.2rem; text-align: center; }
.w-100 { width: 100%; }
.text-muted-lg { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.legal-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.08);
    color: #f8fafc;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-back:hover {
    background: rgba(255,255,255,0.15);
}