/* Styles pour la page de profil */
.profile-page {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 150px;
    padding: 20px;
    margin-bottom: 50px;
  }
  
  .profile-header {
    display: flex;
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
  }
  
  .profile-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 400px;
  }
  
  .profile-image-large {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .profile-picture-form {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .custom-file-upload {
    background: #ff8c00;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    display: inline-block;
    white-space: nowrap;
  }
  
  .custom-file-upload:hover {
    background: #e67e00;
  }
  
  .profile-info {
    margin-top: 20px;
    flex: 1;
    color: #fff;
  }
  
  .profile-info h2 {
    margin: 0 0 20px 0;
    font-size: 32px;
    text-transform: uppercase;
  }
  
  .email-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-align: center;
  }

  .email{
    font-size: 16px;
    text-transform: uppercase;
  }
  
  .date-container {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    text-align: center;
  }

  .member-since{
    font-size: 16px;
    text-transform: uppercase;
  }
  
  .info-reservation{
    margin-top: 20px;

    h3{
        font-size: 24px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }
  }

  .reservation-liste{
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #22291F;
    padding: 20px;
    border-radius: 10px;
  }

  .reservation{
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .reservation-nom{
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .reservation-nom h4{
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
  }

  .reservation ul{
    margin: 0;
  }












  .error-message {
    background: #ffe6e6;
    color: #dc3545;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
  }

