body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.card {
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1) !important;
}

footer {
    margin-top: auto;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#queueLog p {
    margin-bottom: 0.25rem;
    padding: 2px 5px;
    border-bottom: 1px solid #eee;
}

.table th {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0 !important;
    }
    .hero-section h1 {
        font-size: 1.8rem;
    }
}
