/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body & Font Styles */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Logout Section */
  .logout-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .logout-box {
    background-color: #1c1c1c;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
  }
  
  .logout-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ff5a00;
    margin-bottom: 20px;
  }
  
  .logout-message {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 30px;
  }
  
  .logout-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  
  .btn-cancel, .btn-logout {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .btn-cancel {
    background-color: #555;
    color: #fff;
    border: 1px solid #444;
  }
  
  .btn-cancel:hover {
    background-color: #666;
  }
  
  .btn-logout {
    background-color: #ff5a00;
    color: #fff;
    border: 1px solid #ff5a00;
  }
  
  .btn-logout:hover {
    background-color: #e14e00;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .logout-box {
      width: 90%;
      padding: 30px;
    }
  
    .logout-title {
      font-size: 1.5rem;
    }
  
    .logout-message {
      font-size: 0.9rem;
    }
  }