body {
    background-color: #f8f9fa;
}

#wipBanner {
    z-index: 1050;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#wipBanner .btn-close {
    padding: 0.5rem;
}

.time-display {
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 80px;
}

.jumps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 400px;
}

.jump-btn {
    width: 100%;
    height: 70px;
    font-size: 1.25rem;
    font-weight: bold;
    border: 2px solid #28a745;
    background-color: #28a745;
    color: white;
    border-radius: 8px;
    transition: all 0.2s;
}

.jump-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.jump-btn.faulted {
    background-color: #dc3545;
    border-color: #dc3545;
}

.jump-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: none;
}

.accordion-button {
    font-weight: 600;
}

#scoreDisplay {
    color: #6c757d;
    font-size: 2rem;
}

#elapsedTime {
    font-size: 1.5rem;
    color: #6c757d;
}

#displayTimeLimit {
    font-size: 1.5rem;
    color: #6c757d;
}

#currentRider,
#currentHorse {
    font-size: 1.3rem;
}

#scoringDisplay strong {
    font-size: 1.2rem;
}

.table th {
    background-color: #e9ecef;
    font-weight: 600;
}

#ridersList .border-bottom:last-child {
    border-bottom: none !important;
}

#ridersList button svg {
    pointer-events: none;
}

.modal-body .card {
    background-color: #f8f9fa;
}

.control-btn {
    min-height: 60px;
    font-size: 1.1rem;
    font-weight: 600;
}

.control-btn i {
    font-size: 1.2rem;
}

footer {
    margin-top: auto;
}

#includedRidersList .badge {
    font-size: 0.85rem;
    font-weight: normal;
    text-align: left;
    line-height: 1.4;
}

#helpModal .btn:disabled,
#helpModal .btn[disabled] {
    opacity: 1;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .jumps-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
    
    .jump-btn {
        height: 60px;
        font-size: 1rem;
    }
    
    footer .d-flex {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

