.check-in-container {
    min-height: calc(100vh - 150px);
}

.check-in-athlete-list {
    overflow-y: auto;
}

.check-in-qr-panel {
    position: sticky;
    top: 1rem;
}

.check-in-icon {
    color: #28a745;
    font-weight: bold;
}

.check-in-athlete-row {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.check-in-athlete-row:last-child {
    border-bottom: none;
}

.check-in-qr-code-img {
    width: 100%;
    height: auto;
}

.check-in-domain-url {
    font-family: monospace;
    font-size: 1.1rem;
}

.check-in-date-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-in-date-picker-wrapper input[type="date"] {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.check-in-today-badge {
    background-color: #28a745;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

@media (max-width: 990px) {
    .check-in-qr-panel {
        position: relative;
        margin-bottom: 2rem;
    }
    .check-in-athlete-list {
        max-height: none;
    }
}