/* Dark theme custom styles */
body {
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    border-bottom: 2px solid #ffc107;
}

.bg-black {
    background-color: #000000 !important;
}

.card {
    border-width: 2px;
    margin-bottom: 1rem;
}

.card-header {
    font-weight: bold;
}

/* Table styles */
.table-dark {
    --bs-table-bg: #1a1a1a;
    --bs-table-hover-bg: #2a2a2a;
}

/* Form styles */
.form-control:focus, .form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Button styles */
.btn-warning {
    color: #000;
    font-weight: 600;
}

.btn-warning:hover {
    background-color: #ffca2c;
    border-color: #ffc720;
}

/* Bet slip styles */
#bet-slip {
    min-height: 300px;
}

/* Match list styles */
.list-group-item.active {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
}

/* Odds button styles */
.back-btn, .lay-btn {
    min-width: 70px;
}

.back-btn:hover, .lay-btn:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding: 0 10px;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffca2c;
}

/* Footer styles */
footer {
    margin-top: auto !important;
    border-top: 1px solid #ffc107;
}