/* ÖLV Live Ergebnisse – Styles */

body {
    -webkit-tap-highlight-color: transparent;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Athleten - Anpassung für Karten-Look */
#athleten-liste-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Etwas mehr Abstand zwischen den Karten */
    padding: 20px;
}

.athlet-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0; /* Dezenter Rahmen */
    border-radius: 12px;       /* Die abgerundeten Ecken */
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Leichter Schatten für Tiefe */
}

.athlet-card:hover {
    background-color: #fcfcfc;
    border-color: #d32f2f;      /* Roter Rahmen beim Drüberfahren */
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.15); /* Rötlicher Schatten beim Hover */
}
/* Damit der aktive Button rot und der inaktive grau ist */
.btn-aktiv { background-color: #dc2626 !important; color: white !important; }
.btn-inaktiv { background-color: #f3f4f6 !important; color: #4b5563 !important; }

/* style.css hinzufügen */
.card-style {
    background-color: white;
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 0.75rem; /* 12px */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.primary-btn {
    background-color: #dc2626; /* primary */
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

/* Weicher Glow bei Fokus für alle wichtigen Formularfelder */
input:focus, select:focus {
    outline: none !important;
    border-color: #dc2626 !important; /* Dein primary rot */
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
    transition: all 0.2s ease-in-out;
}

/* Tabellen-Hover Effekt "Verschärfen" */
tr:hover {
    background-color: #fef2f2 !important; /* ganz leichtes Rot */
    transition: background-color 0.1s ease;
}