/**
 * Seven Day Calendar - WordPress Plugin Styles
 */

.com-calendar-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 1.5em 0;
}

.com-calendar-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 0.75em;
    color: #333;
}

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

.com-calendar-event {
    display: flex;
    flex-direction: column;
    padding: 0.75em 0;
    border-bottom: 1px solid #e5e5e5;
}

.com-calendar-event:last-child {
    border-bottom: none;
}

.com-calendar-date {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 0.25em;
}

.com-calendar-event-title {
    font-size: 1em;
    font-weight: 500;
    color: #222;
}

.com-calendar-event-title a {
    color: #0066cc;
    text-decoration: none;
}

.com-calendar-event-title a:hover {
    text-decoration: underline;
}

.com-calendar-empty {
    padding: 1em;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Responsive adjustments */
@media (min-width: 600px) {
    .com-calendar-event {
        flex-direction: row;
        align-items: baseline;
        gap: 1em;
    }

    .com-calendar-date {
        flex: 0 0 auto;
        min-width: 200px;
        margin-bottom: 0;
    }
}
