.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.time-slot {
    padding: 10px;
    border: 2px solid #8A1538;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.time-slot:hover {
    background-color: #fde8e8;
    transform: translateY(-2px);
}

.time-slot.selected {
    background-color: #8A1538;
    color: white;
    border-color: #AD1D4A;
}

.time-slot.disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    border-color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.unavailable {
    background-color: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
    cursor: not-allowed;
}

.documents-list {
    list-style-type: none;
    padding: 0;
}

.documents-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.documents-list li:before {
    content: "•";
    color: #8A1538;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.procedure-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.hidden {
    display: none !important;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-container {
    margin-bottom: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-header {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background-color: #8A1538;
    color: white;
}

.calendar-day {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 3px;
}

.calendar-day:hover {
    background-color: #fff0f0;
}

.calendar-day.selected {
    background-color: #8A1538;
    color: white;
    border-color: #AD1D4A;
}

.calendar-day.disabled {
    background-color: #faf8f8;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.unavailable {
    background-color: #fcefef;
    color: #7c0808;
    cursor: not-allowed;
}

.calendar-day.today {
    border: 2px solid #8A1538;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}