:root {
    --primary: #00A3FF;
    /* Azure from Logo */
    --primary-dim: rgba(0, 163, 255, 0.1);
    --bg-black: #000000;
    --surface: #0a0a0a;
    --surface-light: #151515;
    --text: #ffffff;
    --text-muted: #888888;
    --success: #00ff88;
    --danger: #ff3366;
    --border: rgba(255, 255, 255, 0.08);
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #030a1a;
    background-image:
        radial-gradient(circle at 50% -20%, #004a80 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, #002b4d 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, #001a33 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Futuristic Grid Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 163, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 163, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Glowing Orbs Effect */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 163, 255, 0.05) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar - Minimal Black */
.sidebar {
    width: 260px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 0.5px solid rgba(0, 163, 255, 0.15);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 0;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.logo {
    padding: 0 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    filter: drop-shadow(0 0 5px var(--primary));
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav li {
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.sidebar nav li:hover {
    color: white;
}

.sidebar nav li.active {
    color: var(--primary);
    background: var(--primary-dim);
    border-right: 3px solid var(--primary);
}

.sidebar-bottom-menu {
    margin-top: auto;
    padding: 0;
}

.account-item {
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.account-item:hover,
.account-item.active {
    color: white;
}

#logout-btn:hover {
    color: #f43f5e;
    /* Red color for logout */
}

.sidebar-footer {
    padding: 0.5rem 2rem 2rem 2rem;
    /* Reduced top padding */
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 260px;
    padding: 3rem;
    background: transparent;
    /* Permette allo sfondo body di vedersi */
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.header-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 163, 255, 0.3);
}

.header-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.stat-card {
    background: rgba(0, 163, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border: 0.5px solid rgba(0, 163, 255, 0.25);
    min-width: 240px;
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.1);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
}

/* Layout - Sections */
section {
    display: none;
    animation: slideUp 0.3s ease-out;
}

section.active-section {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards - Minimal Black */
.card {
    background: rgba(0, 10, 20, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 0.5px solid rgba(0, 163, 255, 0.15);
    margin-bottom: 2rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 163, 255, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    /* Reduced minmax to allow fitting on smaller screens */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

/* Specific adjustment for Calculator to ensure 2 columns expand nicely */
/* Specific adjustment for Calculator to ensure 2 columns expand nicely */
/* REPLACING GRID WITH FLEXBOX FOR ROBUST 60/40 SPLIT */
/* STRICT GRID LAYOUT 60/40 SPLIT */
#calculator-section .card-grid {
    display: grid !important;
    grid-template-columns: 6fr 4fr !important;
    gap: 2rem;
    align-items: start;
}

/* Specific children styling to ensure they fill the grid cells but not more */
#calculator-section .card-grid>div {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    flex: none !important;
    /* Reset flex if leaked */
}

@media (max-width: 900px) {
    #calculator-section .card-grid {
        grid-template-columns: 1fr !important;
    }
}



/* Inputs & Selects - REFINED */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="datetime-local"],
textarea {
    background: rgba(0, 10, 20, 0.7);
    border: 0.5px solid rgba(0, 163, 255, 0.2);
    border-radius: 0.75rem;
    color: white;
    padding: 0.8rem 1.2rem;
    width: 100%;
    transition: var(--transition);
    font-size: 0.9rem;
    outline: none;
    appearance: none;
    background-image: none !important;
    /* Forza rimozione icone */
}

/* Stile per icona calendario su sfondo scuro */
::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

select {
    background: rgba(0, 10, 20, 0.7) !important;
    border: 0.5px solid rgba(0, 163, 255, 0.2) !important;
    border-radius: 0.75rem !important;
    color: white !important;
    padding: 0.8rem 2.5rem 0.8rem 1.2rem !important;
    width: 100%;
    transition: var(--transition);
    font-size: 0.9rem;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300A3FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.8rem center !important;
    background-size: 1em !important;
    cursor: pointer;
}

input[type="checkbox"] {
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    width: 18px !important;
    height: 18px !important;
    cursor: pointer;
    accent-color: var(--primary);
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    background: none !important;
    border: none !important;
}

option {
    background-color: #050f21;
    /* Sfondo scuro per il menu aperto */
    color: white;
    padding: 10px;
}

input:focus,
select:focus {
    border-color: var(--primary);
    outline: none;
    background-color: rgba(0, 163, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.2);
    border-width: 0.5px;
}

label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 0.5px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: black;
    border: none;
    font-weight: 700;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Table - Clean & Futuristic Overflow */
.table-responsive {
    overflow-x: auto;
    width: 100%;
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    /* Spazio per la barra neon */
    scrollbar-width: auto;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
}

/* Scrollbar Orizzontale Style Neon */
.table-responsive::-webkit-scrollbar {
    height: 10px;
    /* Più spessa per essere ben visibile */
}

.table-responsive::-webkit-scrollbar-track {
    background: rgba(0, 163, 255, 0.02);
    border-radius: 10px;
    border: 0.5px solid rgba(0, 163, 255, 0.1);
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.6);
    border: 2px solid #000;
    /* Stacca la barra dallo sfondo */
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1100px;
    /* Forza la barra sui monitor standard */
}

th,
td {
    white-space: nowrap;
    /* Fondamentale: impedisce il wrapping del testo */
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 0.5px solid rgba(0, 163, 255, 0.1);
}

th {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    font-size: 0.9rem;
    color: var(--text);
}

tr:hover {
    background: rgba(0, 163, 255, 0.03);
}

/* Badges */
.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-open {
    background: var(--primary-dim);
    color: var(--primary);
    border: 0.5px solid var(--primary);
}

.badge-closed {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success);
    border: 0.5px solid var(--success);
}

/* Setup Screen */
.setup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.setup-btn {
    background: rgba(0, 163, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(0, 163, 255, 0.15);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.setup-btn:hover {
    border-color: var(--primary);
    background: var(--primary-dim);
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.2);
}

/* Profiles Layout Fix */
.profile-card {
    background: rgba(0, 163, 255, 0.02);
    border: 0.5px solid rgba(0, 163, 255, 0.15);
}

/* Analytics Cards */
.profile-stats-card {
    border: 0.5px solid rgba(0, 163, 255, 0.2) !important;
    background: rgba(0, 163, 255, 0.05) !important;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.1);
}

.profile-stats-card strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Profile List Fix Wrap */
.book-tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Modals - Fix */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* Range Slider */
input[type="range"] {
    height: 4px;
    background: #222;
    border-radius: 2px;
    margin: 2rem 0;
    accent-color: var(--primary);
}

/* Helpers */
.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.placeholder-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 2rem;
}

/* DB Status */
.db-status-box {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding: 2rem;
}

/* MATCHED BETTING SECTION STYLES */

.mb-section-container {
    width: 100%;
}

/* Calendar Carousel */
.mb-calendar-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* Hide scrollbar but allow JS scroll logic */
    border-radius: 1rem;
    background: rgba(0, 10, 20, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.mb-calendar-fade-left,
.mb-calendar-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 10;
    pointer-events: none;
}

.mb-calendar-fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(3, 10, 26, 1), transparent);
}

.mb-calendar-fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(3, 10, 26, 1), transparent);
}

.mb-calendar-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 1rem;
    scrollbar-width: none;
    /* Firefox */
}

.mb-calendar-carousel::-webkit-scrollbar {
    display: none;
}

.mb-day-card {
    /* Math: (100% width - (6 gaps * 1rem) - (2 padding * 1rem)) / 7 cards = (100% - 8rem) / 7 */
    flex: 0 0 calc((100% - 8rem) / 7);
    min-width: 0;
    /* Allow shrinking below content size */
    height: 240px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    scroll-snap-align: center;
    position: relative;
    opacity: 0.5;
    transform: scale(0.9);
}

.mb-day-card:hover {
    background: rgba(255, 255, 255, 0.08);
    opacity: 0.8;
}

.mb-day-card.active-day {
    background: rgba(0, 163, 255, 0.1);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 163, 255, 0.25);
    opacity: 1;
    transform: scale(1.1);
    z-index: 5;
}

.mb-day-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.mb-day-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.mb-day-month {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 0.2rem;
}

.mb-day-status {
    margin-top: 1rem;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.active-day .mb-day-status {
    background: var(--primary);
    color: black;
    font-weight: 700;
}

/* Tools Grid */
.mb-tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mb-tool-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mb-column-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-sport {
    color: var(--success);
}

.header-casino {
    color: #d946ef;
}

.header-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.header-sport .header-line {
    background: linear-gradient(to right, var(--success), transparent);
}

.header-casino .header-line {
    background: linear-gradient(to right, #d946ef, transparent);
}

.mb-tool-card {
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 900px) {
    .mb-tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Neon Button Style */
.btn-neon {
    background: rgba(0, 163, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 163, 255, 0.2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.7rem;
    padding: 6px 16px;
    border-radius: 0.75rem;
}

.btn-neon:hover {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.6);
    transform: translateY(-2px);
}

/* --- TOP RIGHT SECTION (Bonus & Profits) --- */
.top-right-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bonus-display-box {
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 16px;
    padding: 1.2rem 2.5rem;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.bonus-display-box:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 163, 255, 0.3);
}

.bonus-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.bonus-value-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bonus-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--success);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.gift-icon {
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.gift-icon:hover {
    transform: scale(1.2) rotate(10deg);
}

#bonus-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.holo-modal {
    background: rgba(5, 15, 30, 0.9);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 163, 255, 0.4), inset 0 0 20px rgba(0, 163, 255, 0.1);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    position: relative;
    color: white;
    animation: holoFadeIn 0.3s ease-out;
}

@keyframes holoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.holo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 163, 255, 0.3);
    padding-bottom: 1rem;
}

.holo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.5);
}

.holo-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.holo-close:hover {
    color: white;
}

.holo-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.bonus-item:hover {
    background: rgba(0, 163, 255, 0.05);
    border-color: rgba(0, 163, 255, 0.3);
}

.bonus-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bonus-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.bonus-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.bonus-amounts {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bonus-actions {
    display: flex;
    gap: 0.8rem;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.icon-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.add-bonus-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.8rem;
    background: rgba(0, 163, 255, 0.1);
    border: 1px dashed rgba(0, 163, 255, 0.4);
    color: var(--primary);
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-bonus-btn:hover {
    background: rgba(0, 163, 255, 0.2);
    border-color: var(--primary);
}

.holo-list::-webkit-scrollbar {
    width: 4px;
}

.holo-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

#new-bonus-form {
    display: none;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#new-bonus-form input,
#new-bonus-form select {
    margin-bottom: 0.5rem;
}