/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url("../img/Lbackground.png") ;
    background-size: cover;
  }
  
  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: -1;
    pointer-events: none;
  }
  .user-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
  }
  
  .user-box {
    background: rgba(0, 0, 0, 0.7); 
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 350px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
 
  .user-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
  }
  
  .user-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
 
  .user-info h2 {
    color: #fff;
    font-size: 24px;
    margin: 10px 0;
  }
  
  .user-info p {
    color: #bbb;
    font-size: 16px;
    margin: 5px 0;
    padding-bottom: 1rem;
  }
  
  .logout-btn {
    background-color: #e50914;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  .logout-btn:hover {
    background-color: hsl(207, 80%, 63%);
  }
  

  @media (max-width: 768px) {
    .user-box {
      width: 90%;
      padding: 20px;
    }

    .user-photo {
      width: 100px; 
      height: 100px;
    }

    .user-info h2 {
      font-size: 20px;
    }

    .logout-btn {
      padding: 8px 16px;
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .user-box {
      width: 95%; 
    }

    .user-photo {
      width: 80px;
      height: 80px;
    }

    .user-info h2 {
      font-size: 18px;
    }

    .logout-btn {
      padding: 6px 12px;
      font-size: 12px;
    }
  }