/* Stili personalizzati per l'applicazione */

body {
    background-color: #f8f9fa;
}

.navbar {
    margin-bottom: 0;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.card-header {
    background-color: #f8f9fa;
    font-weight: bold;
}

.table-sm td, .table-sm th {
    padding: 0.3rem;
}

.btn-sm {
    font-size: 0.875rem;
}

/* Stili per la visualizzazione delle sostituzioni */
.location-section {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.375rem;
    border-left: 4px solid #0d6efd;
}

.location-section:last-child {
    margin-bottom: 0 !important;
}

.employee-section {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
}

.employee-section:hover {
    background-color: #e9ecef;
}

.employee-section p {
    color: #212529;
    font-size: 1.05rem;
}

.schedule-list {
    list-style-type: none;
    padding-left: 1.5rem;
}

.schedule-list li {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
}

.schedule-list li::before {
    content: "•";
    color: #0d6efd;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -1.5rem;
}
