/* css/calendar.css */
#calendar-container {
    position: fixed;
    top: 15px;
    left: 15px;
    width: 220px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    font-size: 0.85rem;
    color: #fff;
}

@media (max-width: 1024px) {
    #calendar-container { display: none; }
}

.calendar-header {
    display: flex;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: capitalize;
}

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

.calendar-day-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.calendar-day {
    padding: 5px 0;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.calendar-day:hover { background: rgba(255, 255, 255, 0.2); }

.calendar-day.today {
    background: rgb(0 0 0 / 70%);
    /* border: 1px solid #ffffff00; */
    /* border-radius: 50%; */
    padding: 5px 2px 0px 0px;
}

.calendar-day.has-activity {
    color: #ff0097;
    font-weight: bold;
    /* text-decoration: underline; */
    text-underline-offset: 3px;
}

.calendar-day.has-activity:after {
    content: '';
    display: block;
    /* width: 4px; */
    /* height: 4px; */
    background: #00ffcc;
    border-radius: 50%;
    margin: 1px auto 0;
}










.evo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    /* overflow-y: auto; */
}

.evo-modal-content {
    background: rgba(25, 25, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: #fff;
    position: relative;
    animation: fadeInModal 0.3s ease;
    overflow-y: auto;
    max-height: 94vh;
}

.evo-modal-header {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    color: #0090ff;
}

.evo-modal-body {
    line-height: 1.6;
    font-size: 0.95rem;
}

.evo-modal-close {
    position: absolute;
    top: 10px; right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: rgba(255,255,255,0.5);
}

.evo-modal-close:hover { color: #fff; }

@keyframes fadeInModal {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}