/* ==========================================================================
   WebAgenda - Clinique de Saint-Omer
   Professional Medical Theme
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    /* Primary palette */
    --primary: #1a6fc4;
    --primary-dark: #0f4c8a;
    --primary-light: #e8f0fe;
    --accent-teal: #17a2b8;
    --accent-green: #28a76c;
    --accent-green-light: #d4edda;
    --danger: #dc3545;
    --warning: #ffc107;

    /* Neutrals */
    --bg-body: #f4f7fa;
    --bg-card: #ffffff;
    --border: #dee2e6;
    --border-light: #e9ecef;

    /* Text */
    --text: #212529;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --text-on-primary: #ffffff;

    /* Calendar */
    --cal-available: var(--primary);
    --cal-available-hover: var(--primary-dark);
    --cal-disabled: #e9ecef;
    --cal-disabled-text: #adb5bd;
    --cal-weekend: #6c757d;
    --cal-intervention: var(--accent-teal);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,.12);

    /* Layout */
    --wizard-max-width: 720px;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fs-sm: .875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;

    /* Radius */
    --r-sm: .375rem;
    --r-md: .5rem;
    --r-lg: .75rem;
    --r-xl: 1rem;
}

/* ---------- Base ---------- */
body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text);
    margin: 0;
    padding: 0;
}

/* ---------- Header ---------- */
.site-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: .75rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}

.header-title {
    font-weight: 600;
    font-size: var(--fs-lg);
    letter-spacing: .3px;
}

.header-logo-link {
    display: inline-flex;
    background: #fff;
    border-radius: var(--r-md);
    padding: .25rem .75rem;
}

.header-logo {
    max-height: 40px;
    width: auto;
}

.header-info {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.header-dept-badge {
    background: rgba(255,255,255,.15);
    padding: .25rem .75rem;
    border-radius: 2rem;
    font-size: var(--fs-sm);
    font-weight: 500;
}

.header-address {
    font-size: var(--fs-sm);
    opacity: .85;
}

.header-actions .btn-outline-light {
    border-color: rgba(255,255,255,.4);
    font-size: var(--fs-sm);
}

.header-actions .btn-outline-light:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.6);
}

/* ---------- Error Banner ---------- */
.error-banner {
    display: block;
    text-align: center;
    margin: .75rem auto;
    max-width: var(--wizard-max-width);
}

.error-banner:empty {
    display: none;
}

.error-banner .badge {
    font-size: var(--fs-sm);
    padding: .5rem 1rem;
    font-weight: 500;
}

/* ---------- Help Section ---------- */
.help-section {
    max-width: var(--wizard-max-width);
    margin: 0 auto;
}

.help-card {
    border: none;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
}

.help-card-primary {
    border-left-color: var(--primary);
    background: var(--primary-light);
}

.help-card-danger {
    border-left-color: var(--danger);
    background: #fdf0f0;
}

.help-card-info {
    border-left-color: var(--accent-teal);
    background: #e8f8fa;
}

.help-card .card-title {
    font-weight: 600;
    margin-bottom: .75rem;
}

.doc-link {
    color: var(--text);
    text-decoration: none;
    padding: .5rem .75rem;
    display: block;
    border-radius: var(--r-sm);
    transition: background .2s;
}

.doc-link:hover {
    background: rgba(0,0,0,.05);
    color: var(--primary);
}

/* ---------- Progress Bar ---------- */
.wizard-progress {
    max-width: var(--wizard-max-width);
    margin: 1.5rem auto 0;
    padding: 1.5rem 1rem;
}

.wizard-progress-bar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.wizard-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all .3s ease;
}

.wizard-step-indicator.active .step-circle {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(26,111,196,.2);
}

.wizard-step-indicator.completed .step-circle {
    border-color: var(--accent-green);
    background: var(--accent-green);
    color: #fff;
}

.step-label {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-top: .5rem;
    white-space: nowrap;
}

.wizard-step-indicator.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.wizard-step-indicator.completed .step-label {
    color: var(--accent-green);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 22px .5rem 0;
    transition: background .3s ease;
    min-width: 20px;
}

.step-connector.completed {
    background: var(--accent-green);
}

/* ---------- Wizard Container ---------- */
#Wizard1 {
    display: block;
    max-width: var(--wizard-max-width);
    margin: 0 auto 2rem;
    background: var(--bg-card);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-md);
    padding: 0;
    border: none;
}

#Wizard1 > tbody,
#Wizard1 > tbody > tr,
#Wizard1 > tbody > tr > td {
    display: block;
    width: 100%;
}

#Wizard1 > tbody > tr:first-child > td {
    padding: 2rem 2rem 1rem;
}

#Wizard1 > tbody > tr:last-child > td {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid var(--border-light);
}

/* Navigation inner table */
#Wizard1 > tbody > tr:last-child > td > table {
    width: 100%;
}

#Wizard1 > tbody > tr:last-child > td > table td {
    text-align: right;
    padding: .25rem;
}

/* Step title bars */
.step-title {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: var(--fs-lg);
    padding-bottom: .75rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--primary-light);
}

/* ---------- Form Fields ---------- */
.form-group-custom {
    margin-bottom: 1rem;
}

.form-group-custom .form-label {
    font-weight: 500;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin-bottom: .35rem;
}

.form-group-custom .form-control,
.form-group-custom .form-select {
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    padding: .6rem .85rem;
    font-size: var(--fs-base);
    transition: border-color .2s, box-shadow .2s;
}

.form-group-custom .form-control:focus,
.form-group-custom .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,111,196,.15);
}

/* Validation messages */
span[id*="Validator"] {
    color: var(--danger);
    font-size: var(--fs-sm);
    font-weight: 500;
    display: inline-block;
    margin-top: .25rem;
}

/* ---------- Calendar ---------- */
.cal-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
}

.cal-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 4px;
    background: transparent;
}

/* Month navigation */
.cal-container table > tbody > tr:first-child td {
    padding: .75rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: var(--fs-lg);
    text-align: center;
}

.cal-container table > tbody > tr:first-child a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.25rem;
    padding: .25rem .5rem;
    border-radius: var(--r-sm);
    transition: background .2s;
}

.cal-container table > tbody > tr:first-child a:hover {
    background: var(--primary-light);
}

/* Day header row */
.cal-container table > tbody > tr:nth-child(2) td {
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    padding: .5rem 0;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* All day cells */
.cal-container td {
    text-align: center;
    padding: 2px;
    vertical-align: middle;
}

/* Available day */
.cal-day-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--cal-available);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    font-size: var(--fs-sm);
}

.cal-day-link:hover {
    background: var(--cal-available-hover);
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--shadow-sm);
}

/* Weekend */
.cal-day-weekend {
    background: var(--cal-weekend);
}

.cal-day-weekend:hover {
    background: #5a6268;
}

/* Disabled */
.cal-day-disabled {
    background: var(--cal-disabled) !important;
    color: var(--cal-disabled-text) !important;
    border-radius: var(--r-sm);
}

/* Intervention date marker */
.cal-day-intervention {
    background: var(--cal-intervention) !important;
    color: #fff !important;
    border-radius: 50%;
    font-weight: 700;
    box-shadow: 0 0 0 3px rgba(23,162,184,.3);
    text-align: center;
    line-height: 40px;
}

/* ---------- Time Bubbles (Step 4) ---------- */
.time-bubbles {
    margin-top: 1rem;
}

.time-group {
    margin-bottom: .75rem;
}

.time-group-label {
    display: inline-block;
    background: var(--primary-dark);
    color: #fff;
    font-weight: 600;
    font-size: var(--fs-sm);
    padding: .25rem .75rem;
    border-radius: 2rem;
    margin-bottom: .5rem;
}

.time-group-slots {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.time-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 1rem;
    border: 2px solid var(--primary);
    border-radius: 2rem;
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    font-size: var(--fs-base);
    cursor: pointer;
    transition: all .2s ease;
    min-width: 72px;
}

.time-bubble:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.time-bubble.selected {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(26,111,196,.25);
    transform: scale(1.05);
}

.time-bubble-icon {
    margin-right: .35rem;
    font-size: .9em;
    opacity: .7;
}

.time-bubble.selected .time-bubble-icon {
    opacity: 1;
}

.time-bubble-time {
    white-space: nowrap;
}

/* ---------- Medication Checklist ---------- */
.medication-list {
    display: grid;
    gap: 1rem;
}

.med-category {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.med-category-header {
    background: var(--primary-light);
    padding: .5rem 1rem;
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.med-item {
    padding: .6rem 1rem;
    border-bottom: 1px solid var(--border-light);
    transition: background .15s;
}

.med-item:last-child {
    border-bottom: none;
}

.med-item:hover {
    background: var(--primary-light);
}

.med-item input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--primary);
    margin-right: .5rem;
    vertical-align: middle;
}

.med-item label {
    vertical-align: middle;
    cursor: pointer;
}

/* ---------- Recap / Step 5 ---------- */
.recap-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.recap-header {
    background: var(--primary);
    color: #fff;
    padding: .75rem 1.25rem;
    font-weight: 600;
}

.recap-body {
    padding: 1.25rem;
    background: #fff;
    line-height: 1.8;
}

.email-section {
    background: var(--primary-light);
    padding: 1rem;
    border-radius: var(--r-lg);
    margin-top: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.8);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: var(--fs-sm);
}

.site-footer a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (min-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .site-header {
        padding: .5rem 0;
    }

    .header-logo {
        max-height: 32px;
    }

    .header-dept-badge {
        font-size: .75rem;
        padding: .2rem .5rem;
    }

    .wizard-progress .step-label {
        display: none;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: .85rem;
    }

    .step-connector {
        margin-top: 18px;
        min-width: 12px;
    }

    #Wizard1 > tbody > tr:first-child > td {
        padding: 1.25rem 1rem .75rem;
    }

    #Wizard1 > tbody > tr:last-child > td {
        padding: .75rem 1rem 1.25rem;
    }

    .cal-day-link {
        width: 32px;
        height: 32px;
        font-size: .75rem;
    }

    .cal-day-intervention {
        line-height: 32px;
    }

    .med-category {
        border-radius: var(--r-sm);
    }

    .step-title {
        font-size: var(--fs-base);
    }

    /* Time bubbles on mobile */
    .time-bubble {
        padding: .4rem .75rem;
        font-size: var(--fs-sm);
        min-width: 60px;
    }

    .time-group-slots {
        gap: .35rem;
    }

    /* Stack wizard buttons on mobile */
    #Wizard1 > tbody > tr:last-child > td > table,
    #Wizard1 > tbody > tr:last-child > td > table > tbody,
    #Wizard1 > tbody > tr:last-child > td > table > tbody > tr {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
        justify-content: flex-end;
        width: 100%;
    }

    #Wizard1 > tbody > tr:last-child > td > table td {
        flex: 0 0 auto;
    }
}

/* ==========================================================================
   Proposition Page - Slot Selection
   ========================================================================== */

.proposition-wrapper {
    max-width: var(--wizard-max-width);
    margin: 0 auto;
    padding-bottom: 2rem;
}

.prop-card {
    border: none;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}

.prop-card-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    font-weight: 600;
    border-radius: var(--r-lg) var(--r-lg) 0 0 !important;
    padding: .75rem 1.25rem;
}

.prop-card-header-muted {
    background: #f8d7da;
    color: #842029;
    font-weight: 600;
    border-radius: var(--r-lg) var(--r-lg) 0 0 !important;
    padding: .75rem 1.25rem;
}

.prop-card-error {
    border-left: 4px solid var(--danger);
}

.prop-card-success {
    border-left: 4px solid var(--accent-green);
}

.prop-card-old {
    opacity: .85;
}

.prop-card-contact {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
}

.prop-section-title {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: var(--fs-lg);
    padding-bottom: .5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-light);
}

/* Slots grid — compact: max de créneaux par ligne */
.prop-slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 0;
}

.prop-slot-card {
    flex: 0 0 auto;
    transition: all .15s ease;
    text-align: center;
    border: none;
    background: none;
    padding: 0;
    overflow: visible;
}

.prop-slot-card .prop-slot-btn {
    display: block;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--border);
    background: var(--bg-card);
    color: var(--primary);
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
    margin: 0;
    width: auto;
    font-family: 'Font Awesome 6 Free', inherit;
}

.prop-slot-card .prop-slot-btn::before {
    content: "\f017";  /* fa-clock */
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: .4rem;
    opacity: .6;
    font-size: .9em;
}

.prop-slot-selected .prop-slot-btn::before {
    opacity: 1;
}

.prop-slot-card .prop-slot-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 2px 6px rgba(26,111,196,.15);
    transform: translateY(-1px);
}

.prop-slot-selected .prop-slot-btn {
    border-color: var(--primary) !important;
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 0 0 3px rgba(26,111,196,.2);
}

.prop-slot-unavailable .prop-slot-btn {
    border-color: var(--danger) !important;
    background: #fdf0f0 !important;
    color: #999 !important;
    opacity: .6;
    pointer-events: none;
    text-decoration: line-through;
}

.prop-success-icon {
    animation: propBounce .6s ease;
}

@keyframes propBounce {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.prop-recap-box {
    background: var(--accent-green-light);
    border-left: 4px solid var(--accent-green);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: 1rem 1.25rem;
    font-size: var(--fs-lg);
    line-height: 1.8;
    text-align: left;
    display: inline-block;
}

/* ---------- Date-grouped accordion (many slots) ---------- */
.prop-date-accordion {
    margin-bottom: 1rem;
}

.prop-date-accordion .accordion-item.prop-date-group {
    border: none;
    border-radius: var(--r-lg) !important;
    margin-bottom: .75rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.prop-date-group-btn {
    font-weight: 600;
    font-size: var(--fs-base);
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: .85rem 1.25rem;
    gap: .25rem;
}

.prop-date-group-btn:not(.collapsed) {
    color: var(--text-on-primary);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: none;
}

.prop-date-group-btn:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.prop-date-group-btn:not(.collapsed) .badge {
    background: rgba(255,255,255,.25) !important;
}

.prop-date-group-btn:focus {
    box-shadow: 0 0 0 3px rgba(26,111,196,.2);
}

.prop-date-accordion .accordion-body {
    padding: 1rem;
    background: var(--bg-body);
}

/* Responsive slots */
@media (max-width: 575.98px) {
    .prop-slots-grid {
        gap: 5px;
    }

    .prop-slot-card .prop-slot-btn {
        padding: 7px 10px;
        font-size: 14px;
    }

    .prop-date-group-btn {
        font-size: var(--fs-sm);
        padding: .65rem 1rem;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .cal-container table {
        border-spacing: 2px;
    }

    .cal-day-link {
        width: 28px;
        height: 28px;
        font-size: .7rem;
    }

    .cal-day-intervention {
        line-height: 28px;
    }
}

/* ==========================================================================
   Proposition Calendar Widget
   ========================================================================== */

.prop-calendar-wrapper {
    margin-bottom: 1.5rem;
}

.prop-cal {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.prop-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.prop-cal-title {
    font-weight: 700;
    font-size: var(--fs-lg);
    color: var(--primary-dark);
    text-transform: capitalize;
}

.prop-cal-arrow {
    background: var(--primary-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prop-cal-arrow:hover:not(:disabled) {
    background: var(--primary);
    color: #fff;
}

.prop-cal-arrow:disabled {
    opacity: .3;
    cursor: default;
}

.prop-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: .5rem;
}

.prop-cal-weekdays span {
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .25rem 0;
}

.prop-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.prop-cal-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 2px;
    min-height: 48px;
    border-radius: var(--r-md);
    font-size: var(--fs-sm);
    transition: all .2s;
}

.prop-cal-day-empty {
    min-height: 0;
}

.prop-cal-day-inactive {
    color: var(--text-muted);
}

.prop-cal-day-available {
    background: var(--primary-light);
    color: var(--primary-dark);
    cursor: pointer;
    font-weight: 600;
    border: 2px solid transparent;
}

.prop-cal-day-available:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
}

.prop-cal-day-available:hover .prop-cal-day-count {
    color: rgba(255,255,255,.8);
}

.prop-cal-day-selected {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 0 0 3px rgba(26,111,196,.25);
    transform: scale(1.08);
}

.prop-cal-day-selected .prop-cal-day-count {
    color: rgba(255,255,255,.8) !important;
}

.prop-cal-day-num {
    font-size: var(--fs-base);
    line-height: 1;
}

.prop-cal-day-count {
    font-size: .65rem;
    color: var(--primary);
    line-height: 1;
    margin-top: 1px;
}

.prop-cal-selected-date {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    font-weight: 600;
    font-size: var(--fs-base);
    padding: .75rem 1.25rem;
    border-radius: var(--r-lg);
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.cal-date-slots {
    animation: calSlotsFadeIn .3s ease;
}

@keyframes calSlotsFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive prop-calendar */
@media (max-width: 575.98px) {
    .prop-cal {
        padding: .75rem;
    }

    .prop-cal-day-num {
        font-size: var(--fs-sm);
    }

    .prop-cal-day-count {
        font-size: .55rem;
    }

    .prop-cal-arrow {
        width: 32px;
        height: 32px;
    }
}
