/* Container for all favourite clubs */
.matches-content {
    display: flex;
    flex-direction: row;
    align-items: center; 
    width: 100%;
    margin-top: 50px;
}

.textTop h1 {
    margin: 20px;
    font-size: 80px;
}

.NoFavourites {
    font-size: 30px;
}

.matches-container {
    display: flex;
    flex-direction: row; 
    align-items: center;    
    gap: 20px;             
    flex-wrap: wrap; 
    margin-left: 20px;
}

/* Individual club card */
.match-card {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    width: 300px;
    min-height: 250px; 
    background-color: #e0dfdf; 
    padding: 20px; 
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1); 
    transition: transform 0.2s, box-shadow 0.2s;
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Club name header */
.match-card h2 {
    margin: 0 0 10px 0;
    font-size: 30px;
    font-weight: 600;
    font-family: 'DM Serif Display', serif;
}

/* Club details */
.match-card p {
    margin: 5px 0;
    font-size: 18px;
    line-height: 1.4;
}
