.block-widget {
    background: #f9f9f9;
    padding: 30px;
    border: 15px solid var(--cc-color-gold);
}
.block-widget-header {
    margin-bottom: 20px;
}
.block-widget-intro {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: #333;
}
.block-widget-name {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
}
.block-widget-dates {
    font-size: 18px;
    color: #333;
    margin-top: 5px;
}
.block-widget-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}
.block-widget-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.block-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.block-season-label {
    width: 60px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #666;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.block-cell {
    flex: 1;
    min-width: 100px;
    height: 80px;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
}
.block-cell.empty-spacer {
    border: none;
    background: transparent;
}
.block-cell.completed {
    background: var(--cc-color-gold);
    border-color: var(--cc-color-gold);
}
.block-cell.active {
    background: #b8860b;
    border-color: #b8860b;
}
.block-cell.active .block-label {
   color: #fff;
}
.block-indicator {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 8px;
    background: #fff;
}
.block-cell.completed .block-indicator {
    background: #000;
    border-color: #000;
}
.block-cell.completed .block-indicator::after {
    content: '✓';
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.block-label {
    font-weight: 600;
    color: #000;
}
.block-widget-legend {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}
.legend-dot.completed {
    background: var(--cc-color-gold);
}
.legend-dot.active {
    background: var(--cc-color-gold-hover);
}
.legend-dot.future {
    border: 2px solid #ccc;
    background: #fff;
}

.block-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.block-widget-left {
    flex: 1;
}
.block-widget-right {
    text-align: right;
    flex-shrink: 0;
}
.block-widget-datetime {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    margin-bottom: 5px;
}
.block-widget-weather {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 18px;
}
.weather-icon {
    font-size: 20px;
}
.weather-temp {
    font-weight: 600;
}
.weather-loading {
    font-size: 12px;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .block-widget {
        padding: 20px;
        border-width: 10px;
    }
    
    .block-widget-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .block-widget-right {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-top: 1px solid #ccc;
        padding-top: 10px;
    }
    
    .block-widget-weather {
        justify-content: flex-start;
    }
    
    .block-widget-name {
        font-size: 36px;
    }
    
    .block-widget-grid {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .block-row {
        min-width: 500px;
    }
    
    .block-cell {
        min-width: 80px;
        height: 70px;
    }
    
    .block-season-label {
        width: 50px;
        min-width: 50px;
        height: 70px;
        font-size: 11px;
    }
    
    .block-label {
        font-size: 12px;
    }
    
    .block-indicator {
        width: 14px;
        height: 14px;
        top: 6px;
        right: 6px;
    }
    
    .block-widget-legend {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .legend-item {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .block-widget {
        padding: 15px;
        border-width: 8px;
    }
    
    .block-widget-name {
        font-size: 28px;
    }
    
    .block-widget-intro {
        font-size: 12px;
    }
    
    .block-widget-dates {
        font-size: 16px;
    }
    
    .block-widget-datetime {
        font-size: 12px;
    }
    
    .block-cell {
        min-width: 70px;
        height: 60px;
    }
    
    .block-season-label {
        width: 40px;
        min-width: 40px;
        height: 60px;
        font-size: 10px;
    }
    
    .block-label {
        font-size: 11px;
    }
    
    .block-widget-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}