@charset "utf-8";

#calendar-view.tab-content {
    background: linear-gradient(180deg, #0b1a30 0%, #1a2a47 100%) !important;
    color: #ffffff;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    padding-bottom: 30px;
}

.calendar-day {
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-day.empty {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.calendar-day.has-entry {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffd700;
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.1);
}

.calendar-day.has-entry:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.calendar-day.is-today {
    background-color: rgba(79, 195, 247, 0.05);
    border: 1.5px solid #4fc3f7;
    color: #4fc3f7;
    font-weight: 900;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.2);
}

.calendar-day.is-today.has-entry {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: #4fc3f7;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.3), 0 0 5px rgba(255, 215, 0, 0.2);
}

.calendar-month-title {
    min-width: 100px;
    text-align: center;
}
