  /* Admin notice styling */
.rsc-notice {
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    margin: 1rem 0;
}

/* Main block container */
.reunion-calculator-block {
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    row-gap: 35px;
    background-color: #f1ebe5;
}

/* Header section */
.reunion-calculator-header {
    border-bottom: 1px solid #ccc;
    padding-bottom: 35px;
}

.reunion-header-label {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1.5rem;
}

.reunion-calculator-header h3 {
    margin-bottom: 0.5rem;
}

.reunion-subheader {
    margin-bottom: 1.5rem;
}

/* Body Section - dropdown stacks above the full-width schedule */
.reunion-calculator-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Controls (label + dropdown) */
.reunion-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    width: 200px;
}

.reunion-controls label {
    font-weight: 600;
    color: #333;
}

.required {
    color: #dc3545;
    margin-left: 2px;
}

.reunion-class-dropdown {
    cursor: pointer;
    appearance: inherit;
}

/* Schedule output area - spans the full width of the block */
.reunion-schedule-output {
    width: 100%;
}

/* Schedule output - single full-width column.
   Reunion dates stack vertically; the column expands to all available width. */
.reunion-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.reunion-column {
    /* Intentionally minimal - allows for theme flexibility */
}

/* Reunion date headings */
.reunion-date {
    color: #c41e3a;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Event list */
.reunion-events {
    padding-left: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reunion-calculator-block {
        padding: 2rem 1.5rem;
    }

    .reunion-columns {
        gap: 2rem;
    }

    .reunion-controls {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
}
