
/* Styles pour le plugin FFF Calendar */

.fff-calendar-container {
    max-width: 100%;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.fff-calendar-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #003366;
    border-bottom: 3px solid #0055aa;
    padding-bottom: 10px;
}

.fff-calendar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fff-match-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.fff-match-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.fff-match-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.fff-match-date .date {
    font-weight: bold;
    color: #0055aa;
}

.fff-match-date .time {
    padding: 2px 8px;
    background: #f0f0f0;
    border-radius: 4px;
}

.fff-match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.fff-match-teams .home-team,
.fff-match-teams .away-team {
    flex: 1;
    text-align: center;
}

.fff-match-teams .vs {
    color: #999;
    font-weight: normal;
    font-size: 14px;
}

.fff-match-score {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #0055aa;
    margin: 10px 0;
}

.fff-match-competition {
    text-align: center;
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}

.fff-match-location {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.fff-calendar-error,
.fff-calendar-empty {
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #856404;
}

/* Responsive */
@media (max-width: 768px) {
    .fff-match-teams {
        flex-direction: column;
        gap: 5px;
    }
    
    .fff-match-teams .vs {
        display: none;
    }
}