/* Shortcode Styles - Option 1: Warmes Blau */
/* Hauptfarbe: #4A90E2, Akzent: #ffffa0 */

/* Kommende Feiertage Widget */
.fdp-kommende-feiertage-widget {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.fdp-widget-title {
    color: #4A90E2;
    font-size: 24px;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.fdp-kommende-liste {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fdp-kommende-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.fdp-kommende-item:hover {
    border-color: #4A90E2;
    box-shadow: 0 4px 12px rgba(99, 129, 204, 0.15);
    transform: translateY(-2px);
}

.fdp-kommende-datum {
    background: #4A90E2;
    color: white;
    border-radius: 8px;
    padding: 12px 20px;
    text-align: center;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
}

.fdp-kommende-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    width: 100%;
}

.fdp-kommende-tage {
    color: #7f8c8d;
    font-size: 13px;
    width: 100%;
}

.fdp-kommende-tage.heute {
    background: #ffffa0;
    color: #2c3e50;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Feiertage Liste */
.fdp-feiertage-liste {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.fdp-feiertage-liste h3 {
    color: #4A90E2;
    margin-bottom: 20px;
}

.fdp-feiertage-liste table {
    width: 100%;
    border-collapse: collapse;
}

.fdp-feiertage-liste th {
    background: #4A90E2;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.fdp-feiertage-liste td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
}

.fdp-feiertage-liste tr:hover {
    background: #f8f9fa;
}

/* Countdown */
.fdp-countdown {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.fdp-countdown-header h3 {
    color: #4A90E2;
    font-size: 28px;
    margin-bottom: 20px;
}

.fdp-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.fdp-countdown-item {
    background: #4A90E2;
    color: white;
    border-radius: 12px;
    padding: 20px 30px;
    min-width: 100px;
}

.fdp-countdown-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.fdp-countdown-label {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
}

.fdp-countdown-today {
    background: #ffffa0;
    color: #2c3e50;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 32px;
    font-weight: 700;
}

.fdp-countdown-past {
    color: #95a5a6;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .fdp-kommende-liste {
        flex-direction: column;
    }
    
    .fdp-kommende-item {
        min-width: 100%;
    }
    
    .fdp-countdown-timer {
        flex-direction: column;
        align-items: center;
    }
    
    .fdp-countdown-item {
        width: 100%;
        max-width: 200px;
    }
}
