/* HomePoker - poker dark theme overrides */

body {
    background-color: #1a1a2e;
    min-height: 100vh;
}

.navbar {
    background-color: #16213e !important;
    border-bottom: 2px solid #e94560;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

.card {
    background-color: #16213e;
    border: 1px solid #0f3460;
}

.card-header {
    background-color: #0f3460;
    border-bottom: 1px solid #e94560;
}

.btn-success {
    background-color: #1b998b;
    border-color: #1b998b;
}

.btn-success:hover {
    background-color: #158f82;
    border-color: #158f82;
}

.table-dark {
    --bs-table-bg: #16213e;
    --bs-table-striped-bg: #1a2744;
    --bs-table-hover-bg: #1e2d4f;
}

.text-danger {
    color: #e94560 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 0.2rem rgba(233, 69, 96, 0.25);
}

/* Game Night styles */
#timerDisplay {
    color: #e94560;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.4);
}

.net-cell.text-success {
    color: #1b998b !important;
    font-weight: 600;
}

.net-cell.text-danger {
    font-weight: 600;
}

#balanceWarning {
    border-color: #e94560;
}

/* Timer done animation */
.timer-done {
    animation: timerBlink 0.5s ease-in-out infinite;
    color: #ff0000 !important;
}

@keyframes timerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
