.angie-calendar-79738a08-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    font-family: inherit;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}
.angie-calendar-79738a08-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}
.angie-calendar-79738a08-nav {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 5px 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.angie-calendar-79738a08-nav:hover {
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
}
.angie-calendar-79738a08-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}
@media (max-width: 767px) {
    .angie-calendar-79738a08-wrapper {
        grid-template-columns: 1fr;
    }
}
.angie-calendar-79738a08 {
    width: 100%;
}
.angie-calendar-79738a08 h3.calendar-title {
    margin: 0 0 15px 0;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
}
.angie-calendar-79738a08-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}
.angie-calendar-79738a08-day-name {
    font-weight: bold;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #666;
}
.angie-calendar-79738a08-cell {
    padding: 10px 0;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px auto;
    position: relative;
    transition: all 0.2s ease;
}
.angie-calendar-79738a08-cell:hover:not(.empty) {
    background-color: #eee;
}
.angie-calendar-79738a08-cell.today {
    border: 2px solid #333;
    font-weight: bold;
}
.angie-calendar-79738a08-cell.has-event {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: bold;
}
.angie-calendar-79738a08-cell.has-event::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #1976d2;
}
.angie-calendar-79738a08-events-list {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}
.angie-calendar-79738a08-events-list h4 {
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 600;
}
.angie-calendar-79738a08-event-item {
    font-size: 0.88rem;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    flex-direction: column;
}
.angie-calendar-79738a08-event-item:last-child {
    border-bottom: none;
}
.angie-calendar-79738a08-event-item strong {
    color: #333;
}
.angie-calendar-79738a08-event-item span {
    color: #777;
    font-size: 0.78rem;
    margin-top: 2px;
}
