/* VRC Seasonal Calendar v5.0 */

.vrcsc-legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    padding: 12px 18px;
    margin: 18px 0;
    background: #f7f8fa;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: .85em;
    line-height: 1.5;
}

.vrcsc-legend-label {
    font-weight: 700;
    color: #444;
    margin-right: 4px;
}

.vrcsc-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #333;
}

.vrcsc-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}

.vrcsc-legend-text {
    font-weight: 500;
}

@media (max-width: 640px) {
    .vrcsc-legend {
        font-size: .78em;
        padding: 8px 10px;
        gap: 5px 12px;
    }
    .vrcsc-info-msg {
        font-size: .82em;
        padding: 10px 12px;
    }
}

/* Info message */
.vrcsc-info-msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    margin: 12px 0 18px;
    background: #f0f7ff;
    border: 1px solid #c8ddf0;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: .88em;
    line-height: 1.6;
    color: #1e3a5f;
}

.vrcsc-info-icon {
    flex-shrink: 0;
    font-size: 1.1em;
}

/* Price breakdown */
.vrcsc-price-breakdown {
    margin: 22px 0;
    padding: 20px 24px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: .95em;
    line-height: 1.6;
}

.vrcsc-pb-header {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    margin: 0 0 14px 0;
    padding: 0 0 10px 0;
    border-bottom: 2px solid #e0e0e0;
}

.vrcsc-pb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.vrcsc-pb-total {
    font-size: 1.05em;
}

.vrcsc-pb-deposit {
    color: #2e7d32;
}

.vrcsc-pb-note {
    padding: 12px 0 0;
    color: #555;
    font-size: .9em;
    line-height: 1.7;
}

.vrcsc-pb-season {
    gap: 8px;
}

.vrcsc-pb-season-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
    margin-right: 4px;
}

.vrcsc-pb-season-name {
    flex: 1;
}

.vrcsc-pb-season-rate {
    color: #777;
    font-size: .9em;
}

.vrcsc-pb-season-subtotal {
    white-space: nowrap;
}

.vrcsc-pb-separator {
    border-top: 2px solid #ddd;
    margin: 6px 0;
}

@media (max-width: 640px) {
    .vrcsc-price-breakdown {
        padding: 14px 16px;
        font-size: .88em;
    }
    .vrcsc-pb-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}
