#ast-calendar{
    width:100%;
}

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

.ast-calendar-header button{
    padding:8px 15px;
    cursor:pointer;
}

.ast-weekdays{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    font-weight:bold;
    text-align:center;
    margin-bottom:5px;
}

#ast-calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:2px;
}

.ast-day{
    border:1px solid #ddd;
    min-height:220px;
    padding:5px;
    overflow:hidden;
    background:#fff;
}

.ast-day-number{
    font-weight:bold;
    margin-bottom:5px;
}

.ast-event-card{
    font-size:12px;
}

.ast-event-card img{
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:4px;
}

.ast-event-title{
    margin-top:5px;
    font-weight:bold;
    line-height:1.2;
}

.ast-event-city{
    color:#666;
    margin-top:3px;
}
#ast-calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:4px;
}

.ast-day{
    border:1px solid #ddd;
    min-height:220px;
    padding:6px;
    background:#fff;
}

.ast-empty{
    background:#f5f5f5;
}

.ast-day-number{
    font-weight:bold;
    margin-bottom:5px;
}

.ast-event-card{
    display:block;
    text-decoration:none;
    margin-bottom:8px;
}

.ast-event-card img{
    width:100%;
    height:80px;
    object-fit:cover;
    border-radius:4px;
}

.ast-event-title{
    font-size:12px;
    font-weight:bold;
    line-height:1.2;
    margin-top:4px;
}

.ast-event-city{
    font-size:11px;
    color:#666;
}

.ast-more{
    font-size:11px;
    color:#0066cc;
    font-weight:bold;
}
