/* V8: CLEAN SLATE - ROBUST & FUNCTIONAL */

/* --- RESET & BASICS --- */
:root {
    --bg-body: #121212;
    --bg-card: #1e1e1e;
    --bg-panel: #181818;

    --border: #333;
    --border-light: #444;

    --text-main: #ffffff;
    --text-muted: #aaaaaa;

    --accent: #2196f3;
    /* Solid Blue for reliability, or White */
    --accent-hover: #1976d2;
    --danger: #ef5350;

    --nav-height: 60px;
    --sidebar-width: 250px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
    /* Prevent body scroll, handle in main */
}

/* --- UTILITIES --- */
.hidden {
    display: none !important;
}

button {
    font-family: inherit;
}

/* --- LOGIN SCREEN --- */
#login-screen {
    position: fixed;
    inset: 0;
    z-index: 200;
    /* Ensure on top */
    background: var(--bg-body);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.login-card h1 {
    margin-top: 0;
    font-size: 1.5rem;
}

.login-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.input-group input {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid var(--border);
    color: white;
    border-radius: 4px;
    font-size: 1rem;
}

.input-group input:focus {
    border-color: var(--accent);
    outline: none;
}

.btn-full {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-full:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 15px var(--accent);
}

.btn-full:disabled {
    opacity: 0.7;
    cursor: wait;
    border-color: #555;
    color: #888;
}

.auth-footer button {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    text-decoration: underline;
}

/* --- APP LAYOUT --- */
#gallery-screen {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-shrink: 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand {
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Main Container */
.main-layout {
    display: flex;
    flex: 1;
    overflow: hidden;
    /* Contain scroll */
    position: relative;
}

/* Sidebar */
#sidebar {
    width: var(--sidebar-width);
    background: var(--bg-panel);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 100;
}

/* Desktop Collapsed State */
#sidebar.collapsed {
    margin-left: calc(var(--sidebar-width) * -1);
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    margin: 0 0 15px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.nav-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;
    margin-bottom: 5px;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    border-radius: 4px;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: white;
}

.nav-item.sub-item {
    padding-left: 20px;
    font-size: 0.9rem;
    border-left: 2px solid #333;
    border-radius: 0 4px 4px 0;
}

.icon-btn-small {
    background: transparent;
    border: 1px solid var(--border);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Grid Area */
main {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-body);
}

h2#view-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 500;
}

#photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
}

.photo-item:hover {
    border-color: #666;
}

.photo-item img,
.photo-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-item.selected {
    border: 2px solid var(--accent);
}

/* Indicators */
.vid-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: bold;
}

.checkbox {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    border-radius: 50%;
    color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox.checked {
    background: var(--accent);
    border-color: var(--accent);
    color: black;
}

/* --- CONTROLS --- */
.btn-primary {
    background: white;
    color: black;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary {
    background: #333;
    color: white;
    border: 1px solid #444;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-danger {
    background: #c62828;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-icon {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-text {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    text-decoration: underline;
}

.avatar-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333;
    background-size: cover;
    background-position: center;
    border: 1px solid #555;
    cursor: pointer;
}

/* --- MODALS --- */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 300;
}

.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.2rem;
}

.close-modal {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}

/* Insane Upload Styles */
.upload-zone {
    border: 2px dashed #333;
    background: #111;
    padding: 40px;
    text-align: center;
    margin: 20px 0;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.upload-zone:hover {
    border-color: var(--accent);
    background: #161616;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.upload-preview-item {
    aspect-ratio: 1;
    background: #000;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.2s;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.upload-preview-item:hover {
    transform: translateY(-5px);
    border-color: #666;
}

.upload-preview-item img,
.upload-preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.2s;
}

.upload-preview-item:hover img,
.upload-preview-item:hover video {
    opacity: 1;
    transform: scale(1.05);
}

.remove-preview {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    line-height: 1;
    transition: 0.2s;
}

.remove-preview:hover {
    background: var(--danger);
    transform: rotate(90deg);
}

.preview-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px 8px;
    font-size: 0.7rem;
    color: #ccc;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
    text-align: right;
}

.vid-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--accent);
    color: black;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 4px;
}

/* --- INSANE LIGHTBOX --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    /* Deep blur */
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    /* For 3D feel */
}

/* Floating Navigation Arrows */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    border-radius: 8px;
}

.lb-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.lb-nav.left {
    left: 20px;
}

.lb-nav.right {
    right: 20px;
}

#lightbox-media-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.1, 0.7, 0.1, 1);
}

.lightbox-img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    animation: zoomIn 0.4s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Sidebar Album Items */
.sidebar-album-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--text-muted);
    transition: background 0.2s;
}

.sidebar-album-row:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.sidebar-album-row.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
}

.btn-del-album {
    opacity: 0;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    transition: 0.2s;
}

.sidebar-album-row:hover .btn-del-album {
    opacity: 1;
}

.btn-del-album:hover {
    color: var(--danger);
}

/* Refined Lightbox Actions */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    line-height: 1;
    padding-bottom: 4px;
    /* Optical center */
}

.lightbox-close:hover {
    background: var(--danger);
    border-color: var(--danger);
    transform: rotate(90deg);
}

.lightbox-overlay {
    height: 80px;
    /* Taller for better touch target */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    flex-shrink: 0;
}

.lb-actions {
    display: flex;
    gap: 20px;
}

.lb-actions .btn-icon {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.2s;
}

.lb-actions .btn-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lb-actions .btn-icon.danger:hover {
    background: var(--danger);
    color: white;
}

.lb-meta {
    font-size: 1rem;
    font-weight: 500;
    color: #ddd;
}

.lb-meta .tag {
    background: var(--accent);
    color: black;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 10px;
}

/* --- ACTION BAR (Selection) --- */
.action-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 150;
}

/* User Dropdown */
/* User Dropdown */
.dropdown-menu {
    position: absolute;
    top: 60px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 4px;
    min-width: 180px;
    z-index: 500;
}

.menu-item {
    padding: 10px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
}

.menu-item:hover {
    background: #333;
}

/* UTILS MISC */
.full-width {
    width: 100%;
    margin-top: 10px;
}

.full-input {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid var(--border);
    color: white;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 20px;
}

.full-input:focus {
    border-color: var(--accent);
    outline: none;
}

/* Select Styling */
select {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid var(--border);
    color: white;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

/* Admin List */
.admin-user-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

.admin-user-row:last-child {
    border-bottom: none;
}

.admin-user-row .actions {
    display: flex;
    gap: 8px;
}

.btn-secondary.small {
    padding: 4px 10px;
    font-size: 0.8rem;
}

.btn-danger.small {
    padding: 4px 10px;
    font-size: 0.8rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    #sidebar {
        position: fixed;
        top: var(--nav-height);
        bottom: 0;
        left: 0;
        width: 80%;
        transform: translateX(-100%);
    }

    #sidebar.mobile-open {
        transform: translateX(0);
    }

    #sidebar.collapsed {
        margin-left: 0;
    }

    /* Reset desktop collapse logic */

    .navbar {
        padding: 0 10px;
    }

    .brand {
        display: none;
    }

    /* Save space */
    .btn-primary span {
        display: none;
    }

    .btn-primary::before {
        content: "+";
        font-size: 1.2rem;
    }

    #photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    main {
        padding: 10px;
    }

    .lightbox-overlay {
        height: auto;
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .lb-actions {
        align-self: flex-end;
    }

    .lb-nav {
        font-size: 1.5rem;
        padding: 10px;
    }

    .action-bar {
        width: 95%;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* --- MISSING COMPONENTS FILL-IN --- */

/* Toast Notifications (High Visibility) */
#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    width: auto;
    max-width: 90%;
    align-items: flex-end;
    /* Align to right */
}

.toast {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ccc;
    border-left: 6px solid var(--accent);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spy Banner */
.spy-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 1500;
    /* Below Modals (2000) and Lightbox (3000) */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-spy-exit {
    background: white;
    color: #d84315;
    border: none;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
}

/* Auth Error */
.error-text {
    color: #ff5252;
    background: rgba(255, 82, 82, 0.1);
    border: 1px solid rgba(255, 82, 82, 0.2);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: left;
    display: block;
}

/* Album Selection Grid */
.list-select {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    padding: 5px;
}

.album-option {
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.album-option::before {
    content: "📁";
    font-size: 1.5rem;
}

.album-option:hover {
    border-color: #666;
    background: #161616;
}

/* Custom Video Player */
.video-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper video {
    max-width: 100%;
    max-height: 80vh;
    cursor: pointer;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-wrapper:hover .video-controls,
.video-controls.active {
    opacity: 1;
}

.vc-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vc-btn:hover {
    color: var(--accent);
}

.vc-progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.vc-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    width: 0%;
}


/* --- Spy Banner: Relocated to Bottom Left --- */
.spy-banner {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    padding: 8px 16px;
    background: rgba(255, 87, 34, 0.9);
    border: 1px solid #ffab91;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 5000;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    backdrop-filter: blur(5px);
    animation: slideUp 0.3s ease-out;
}

.btn-spy-exit {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.btn-spy-exit:hover {
    background: white;
    color: #d84315;
}

/* --- Volume Controls --- */
.vc-vol-group {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 30px;
    overflow: hidden;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vc-vol-group:hover {
    width: 100px;
}

.vc-vol-slider {
    width: 60px;
    height: 4px;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.vc-vol-slider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}