/* Appointment Calendar Styles - V8 Miska */
:root {
    --primary-burgundy: #7A2E3D;
    --primary-burgundy-soft: rgba(122, 46, 61, 0.05);
}

.shadow-premium {
    box-shadow: 0 10px 30px rgba(122, 46, 61, 0.08);
}

.border-2-burgundy {
    border: 2px solid var(--primary-burgundy) !important;
}

.border-2-burgundy:focus {
    border-color: var(--primary-burgundy) !important;
    box-shadow: 0 0 0 0.25rem rgba(122, 46, 61, 0.2) !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.fw-extrabold {
    font-weight: 800;
}

/* Utilities Burgundy */
.bg-burgundy {
    background-color: var(--primary-burgundy) !important;
}

.bg-burgundy-soft {
    background-color: var(--primary-burgundy-soft) !important;
}

.text-burgundy {
    color: var(--primary-burgundy) !important;
}

.btn-burgundy {
    background-color: var(--primary-burgundy) !important;
    border-color: var(--primary-burgundy) !important;
    color: #fff !important;
}

.btn-burgundy:hover {
    background-color: #5e232f !important;
    border-color: #5e232f !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 46, 61, 0.3) !important;
}

.btn-outline-burgundy {
    color: var(--primary-burgundy) !important;
    border: 2px solid var(--primary-burgundy) !important;
    background: transparent !important;
}

.btn-outline-burgundy:hover {
    background-color: var(--primary-burgundy) !important;
    color: #fff !important;
}

.calendar-container {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    background: var(--primary-burgundy-soft);
    border-radius: 12px;
}

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

.calendar-header-day {
    text-align: center;
    font-weight: 800;
    font-size: 0.7rem;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.calendar-day {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    color: #444;
}

.calendar-day:hover:not(.disabled) {
    background-color: var(--primary-burgundy-soft);
    color: var(--primary-burgundy);
    transform: scale(1.1);
}

.calendar-day.selected {
    background-color: var(--primary-burgundy) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(122, 46, 61, 0.3);
}

.calendar-day.today {
    border: 2px solid var(--accent-gold, #B8860B);
    color: var(--primary-burgundy);
}

.calendar-day.disabled {
    color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.4;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.time-slot {
    padding: 15px;
    text-align: center;
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease;
    background: #fff;
}

.time-slot:hover:not(.disabled) {
    border-color: var(--primary-burgundy);
    color: var(--primary-burgundy);
    background: var(--primary-burgundy-soft);
}

.time-slot.selected {
    background-color: var(--primary-burgundy);
    color: #fff;
    border-color: var(--primary-burgundy);
    box-shadow: 0 6px 15px rgba(122, 46, 61, 0.2);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: #fafafa;
    border-style: dashed;
}

.border-dashed {
    border-style: dashed !important;
    border-width: 2px !important;
}

@media (min-width: 992px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-title {
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--primary-burgundy);
}

.card-details-premium {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(122, 46, 61, 0.1);
    box-shadow: 0 8px 25px rgba(122, 46, 61, 0.05);
}

.documents-list {
    list-style: none;
    padding-left: 0 !important;
}

.documents-list li {
    padding: 10px 15px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid var(--primary-burgundy);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 0.85rem;
    color: #555;
    position: relative;
    padding-left: 35px;
}

.documents-list li::before {
    content: "\F272";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 12px;
    color: var(--primary-burgundy);
    opacity: 0.5;
}

.smallest {
    font-size: 0.72rem;
}

input.form-control,
select.form-select,
textarea.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1.5px solid #eee;
}

input.form-control:focus,
select.form-select:focus,
textarea.form-control:focus {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 0.25rem rgba(122, 46, 61, 0.1);
}