/* style.css */

/* General Page Styles */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f4;
}

.container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 95%;
  max-width: 600px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Input Fields */
input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Buttons */
button {
  padding: 10px 20px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: none;
  background-color: #007BFF;  
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

#guestButton{
    background-color: green;
    color: white; 
  }
  #logoutButton{
    background-color: rgb(226, 75, 75);
    color: white; 
  }
  

button:hover {
  background-color: #0056b3;
}

/* Utility Classes */
.hidden {
  display: none;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: -10px;
}

/* Section titles and labels */
label {
  display: block;
  font-weight: bold;
  text-align: left;
  margin-top: 10px;
}

/* Mobile Optimization */
@media (max-width: 450px) {
  .container {
    width: 95%;
    padding: 15px;
  }

  input {
    font-size: 14px;
    padding: 8px;
  }

  button {
    font-size: 15px;
    padding: 8px 16px;
  }
}

.auto-disconnect-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 10px;
  gap: 5px;
}

.auto-disconnect-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auto-disconnect-time {
  display: flex;
  align-items: center;
  gap: 5px;
}

.auto-disconnect-time input {
  width: 60px;
  text-align: center;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
