.muse-calendar-container {
    position: relative;
    display: inline-block;
}

.muse-date-display {
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.muse-date-display:hover {
    background: #f9f9f9;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    height: 40px;
}

.month-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #333;
    text-align: center;
    flex: 1;
}

.nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-arrow:hover {
    background: rgba(170, 0, 0, 0.1);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.day-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 12px;
}

.day-header {
    font-size: 16px;
    color: #947D62;
    text-align: center;
    font-weight: bold;
    padding: 8px 0;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    flex: 1;
}

.day-cell {
    background: #FDFBF8;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    min-height: 36px;
    border-radius: 6px;
}

.day-cell:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.day-cell.other-month {
    color: #ccc;
    cursor: not-allowed;
}

.day-cell.unselectable {
    color: #ccc;
    opacity: 0.5;
    cursor: not-allowed;
}

.day-cell.unselectable:hover {
    background: #FDFBF8;
    transform: none;
}
/*
.day-cell.today {
    border: 3px solid #aa0000;
    background: #FDFBF8;
    font-weight: bold;
}

.day-cell.selected {
    border: 3px solid #aa0000;
    background: #FFFFFF;
    font-weight: bold;
}
*/

/* Today (always visible) — no border unless selected */
.day-cell.today {
    background: #fff5f5; /* subtle pink tint */
    font-weight: bold;
    color: #aa0000;
}

/* Selected date (always has solid border + white background) */
.day-cell.selected {
    border: 3px solid #aa0000;
    background: #ffffff;
    font-weight: bold;
    color: #aa0000;
}

/* If today is also selected (or no ?day — meaning today is selected by default) */
.day-cell.today.selected {
    border: 3px solid #aa0000;
    background: #ffe6e6; /* slightly deeper tint to show overlap */
}

/* === Muse Calendar Navigation === */
.muse-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.muse-nav-link {
    background: #826c50;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s ease;
}

.muse-nav-link:hover {
    background: #6f5b42;
	color: #eee;
}

.muse-nav-link.prev-day {
    order: 0;
}

.muse-calendar-container {
    order: 1;
}

.muse-nav-link.next-day {
    order: 2;
}

.muse-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.muse-nav-link {
    background: #826c50;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s ease;
    text-align: center;
    min-width: 120px; /* or match the “Previous” button width */
    display: inline-block;
}

.muse-nav-link.disabled {
    opacity: 0.4;
    pointer-events: none;
    background: #b0a18f;
}

.muse-nav-link:hover {
    background: #6f5b42;
    color: #eee;
}

/* Optional: ensure Today matches the others */
.muse-nav-link.today-day {
    background: #826c50;
}

.muse-nav-link.today-day:hover {
    background: #6f5b42;
}
