.calendar-year-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.calendar-month-card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background: #fff;
}

.calendar-month-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    background-color: #f5f5f5;
    padding: 5px;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.calendar-table th, .calendar-table td {
    text-align: center;
    padding: 2px;
}

.calendar-table th {
    font-weight: bold;
    color: #666;
}

.day-cell {
    cursor: pointer;
}

.day-cell:hover {
    background-color: #f0f0f0;
}

.day-today {
    background-color: #ffeb3b;
    font-weight: bold;
    border-radius: 50%;
}

.day-weekend {
    color: #d9534f;
}

.day-other-month {
    color: #ccc;
}

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

.calendar-nav a {
    font-size: 1.2em;
    text-decoration: none;
}

.calendar-header-large {
    text-align: center;
    margin-bottom: 30px;
}

/* Month View Specifics */
.calendar-month-view {
    max-width: 800px;
    margin: 0 auto;
}

.calendar-month-view .calendar-table {
    font-size: 16px;
}

.calendar-month-view .calendar-table th, .calendar-month-view .calendar-table td {
    padding: 15px;
    border: 1px solid #eee;
}

.calendar-month-view .day-cell {
    height: 80px;
    vertical-align: top;
    text-align: left;
}

.calendar-month-view .day-number {
    font-weight: bold;
    display: block;
}

/* Week View Specifics */
.calendar-week-view {
    max-width: 1000px;
    margin: 0 auto;
}

.calendar-week-view .calendar-table {
    font-size: 16px;
}

.calendar-week-view .calendar-table th, .calendar-week-view .calendar-table td {
    padding: 15px;
    border: 1px solid #eee;
    width: 14.28%; /* 100% / 7 */
}

.calendar-week-view .day-cell {
    height: 300px; /* Taller for week view to show schedule */
    vertical-align: top;
    text-align: left;
}

/* Day View Specifics */
.calendar-day-view {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 40px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.calendar-day-view h1 {
    font-size: 4em;
    margin: 0;
    color: #333;
}

.calendar-day-view h3 {
    margin-top: 10px;
    color: #666;
}

/* Day Timeline */
.day-timeline {
    margin-top: 30px;
    position: relative;
}

.timeline-container {
    position: relative;
    border-left: 2px solid #eee;
    padding-left: 20px;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline li {
    height: 60px; /* 1 hour = 60px */
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.timeline-time {
    position: absolute;
    left: -70px;
    top: -10px;
    width: 50px;
    text-align: right;
    color: #999;
    font-size: 0.9em;
}

.current-time-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: red;
    z-index: 10;
}

.current-time-line::before {
    content: '';
    position: absolute;
    left: -6px;
    top: -4px;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
}

/* Week Numbers */
.current-week {
    background-color: #ffeb3b;
    font-weight: bold;
}

/* Shortcuts Section */
.shortcuts-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #eee;
    text-align: center;
}

.shortcuts-section h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #555;
}

.shortcuts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.shortcuts-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    color: #666;
}

kbd {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    color: #333;
    display: inline-block;
    font-family: monospace;
    font-size: 11px;
    line-height: 1.4;
    padding: 0.1em 0.6em;
    text-shadow: 0 1px 0 #fff;
}

/* Calendar Home Option Grid */
.calendar-options-row {
    margin-top: 30px;
}

.calendar-options-row--tools {
    margin-top: 10px;
    margin-bottom: 30px;
}

.calendar-options-title {
    margin-bottom: 25px;
}

.calendar-option-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    box-shadow: 0 10px 24px -20px rgba(0, 0, 0, 0.55);
    min-height: 160px;
    padding: 20px 16px;
    margin-bottom: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.calendar-option-card:hover {
    transform: translateY(-2px);
    border-color: #dd356e;
    box-shadow: 0 14px 26px -18px rgba(0, 0, 0, 0.4);
}

.calendar-option-card h4 {
    margin-bottom: 12px;
    min-height: 52px;
}

.calendar-option-card h4 a {
    color: #111;
}

.calendar-option-card h4 a:hover,
.calendar-option-card h4 a:focus {
    color: #dd356e;
}

.calendar-option-card p {
    margin-bottom: 0;
    color: #575757;
    font-size: 15px;
    line-height: 1.5;
}
