body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.login-container {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}
.login-container h1 {
    margin-bottom: 20px;
}
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    width: 100%;
    padding: 10px;
    background-color: #0077ff;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}
.error {
    background-color: #ffcccc;
    color: #a00;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.dashboard-container {
    max-width: 850px; /* Avant : 600px ou 700px */
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
.dashboard-actions {
    margin-bottom: 30px;
}
.button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #0077ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.button-logout {
    background-color: #ff4d4d;
}
.projects-list {
    margin-top: 20px;
    text-align: left;
}
.btn-corbeille {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 10px;
}
.btn-corbeille:hover {
    background-color: #c0392b;
}
.message {
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
    max-width: 600px;
}
.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1000;
}
.toast.success {
    background-color: #28a745;
}
.toast.error {
    background-color: #dc3545;
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 1.2em;
    color: #fff;
    background-color: #333;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}
.popup.success {
    background-color: #28a745;
}
.popup.error {
    background-color: #dc3545;
}
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
  /* Exemple pour les liens, boutons... */
  a, button {
    color: var(--accent-color);

    
}
.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
    padding: 5px;
  }
  
  .stat-block {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    width: calc(33.333% - 600px); /* Pour 3 colonnes */
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }
  
  .photo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  