body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    /* background-color: #f0f0f0; v0.1*/
    background-color: #8a8a8a;
    width: 100%;
}

.container {
    /* max-width: 1200px;*/
        min-width: 1000px;
    margin: 0 auto;
    /* padding: 20px; v0.1 */
}

.header {
    background-color: #003087;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logout-btn {
    background-color: #ff4444;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    text-decoration: none;
}

.main-content {
    display: flex;
    margin-top: 20px;
    /* gap: 20px; v.0.1*/
    gap: 10px;
}

.left-section {
    width: 25%;
    /* background-color: white; v0.1*/
    background-color: #0a1d3b;
    padding: 20px;
    border-radius: 5px;
}

.left-section ul {
    list-style: none;
    padding: 0;
}

.left-section a {
    text-decoration: none;
    /* color: #333; v0.1 */
    color: white;
    display: block;
    padding: 10px;
}

.left-section a:hover {
    background-color: #eee;
    color: black;
}

.right-section {
    width: 75%;
    /* background-color: white; */
    background-image: url("../img/ecran.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 5px;
}
/* D-INFOS.PHP */
/*
.stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    background-color: #f8f8f8;
    padding: 20px;
    flex: 1;
    text-align: center;
    border-radius: 5px;
} */
        .stats {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .stat-box {
            background-color: #fff;
            padding: 15px;
            flex: 1 1 200px;
            max-width: 220px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        .stat-box img {
            width: 40px;
            height: 40px;
            margin-bottom: 10px;
        }
        .stat-box h3 {
            color: #003087;
            font-size: 16px;
            margin: 0 0 10px 0;
            font-weight: 600;
        }
        .stat-box p {
            color: #333;
            font-size: 20px;
            margin: 0;
            font-weight: bold;
        }
/** F-INFOS.PHP **/

.login-container {
    width: 300px;
    margin: 100px auto;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background-color: #003087;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.box-rempli {
  background-color: #8a8a8a;
  border: 1px solid #454f60;
  padding: 3px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

/* Text css */
.copytext {
color: gray;
font-style: italic;
}
.copytext2 {
color: gray;
font-style: italic;
font-size: 10px;
}

.text-white{color: white;}
.text-black{color: black;}
.text-red{color: red;}
.text-green{color: green;}
.text-yellow{color: yellow;}
.text-gray{color: gray;}
.text-orange{color: orange;}