body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.navbar {
    background: black;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
	margin-bottom: 20px;
}

.logo {
    font-size: 1.5em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: background 0.3s;
}

.nav-links a:hover {
    background-color: blue;
    border-radius: 5px;
}

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
}

.content {
    text-align: center;
    
}

.login-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    text-align: left;
    margin-top: 20px;
}

.login-form label {
    display: block;
    margin-top: 10px;
}

.login-form input {
    width: 90%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    background: black;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
}

.login-form button:hover {
    background: blue;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: black;
        text-align: center;
        position: absolute;
        top: 50px;
        left: 0;
        padding: 10px 0;
    }

    .nav-links li {
        display: block;
        padding: 10px 0;
    }

    .burger {
        display: block;
    }
}


form {
            margin-bottom: 20px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            border: 1px solid black;
            padding: 8px;
            text-align: center;
        }
        td a {
            text-decoration: none;
            font-weight: bold;
        }
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        .win { background-color: green; color: white; padding: 5px; }
        .lose { background-color: red; color: white; padding: 5px; }


      .menu-central-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
		  	margin :2em;
		  	padding-top:2em;
		  	float: left;
            
        }
        
        .menu-central {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            width: 300px;
        }
        
        .menu-central ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        
        .menu-central ul li {
            margin: 10px 0;
        }
        
        .menu-central ul li a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            padding: 10px;
            display: block;
            background-color: #007bff;
            color: white;
            border-radius: 5px;
            transition: background 0.3s;
        }
        
        .menu-central ul li a:hover {
            background: #0056b3;
        }

   /* Overlay de la lightbox */
    #lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: none;
      z-index: 9999;
    }
    /* Conteneur central de la lightbox */
    #lightbox-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      width: 95%;
      max-height: 90%;
      overflow-y: auto;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
    /* Bouton de fermeture */
    #lightbox-close {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      font-size: 24px;
      font-weight: bold;
      color: #333;
    }

 .star {
            cursor: pointer; 
            font-size: 20px;
            margin-left: 10px;
        }

	.starMatch{
            cursor: pointer; 
            font-size: 40px;
            margin-left: 10px;
			font-weight: bold;
			}

        .yellow {
            color: darkorange;
        }
        .gray {
            color:darkgray;
        }


/******** MISE EN FORME DES MATCHS ********************/

.win { background-color: green; color: white; padding: 2px 4px; margin:2px; border-radius:5px; font-weight: bold; }
.draw { background-color: orange; color: white; padding: 2px 4px; margin:2px;  border-radius:5px; font-weight: bold; }
.loss { background-color: red; color: white; padding: 2px 4px; margin:2px; border-radius:5px; font-weight: bold; }
.goalAgainst { border: 1px solid #000;
    background: #000; color: #fff;  text-align: center;   border-radius: 5px; font-size: 14px; font-weight: bold; padding: 3px;  }
.goalFor {   border-radius: 5px;  border: 1px solid #000;
    background: #fff; color: #000;  text-align: center;  font-size: 14px; font-weight: bold; padding: 3px; }


