body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  /* Auth page specific styles */
  .image-container {
    height: 33.33vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .auth-container {
    height: 33.33vh;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
  }
  
  .auth-container p {
    margin: 0 auto 15px;
    width: 100%;
    text-align: center;
  }
  
  .input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
  }
  
  .input-group input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .error-message {
    color: red;
    min-height: 20px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
  
  /* Control page specific styles */
  .circle-container {
    height: 33.33vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .status-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: background-color 0.3s;
    position: relative;
  }
  
  #countdown {
    position: absolute;
    font-size: 54px;
    font-weight: bold;
    color: black;
    z-index: 2;
  }
  
  .armed {
    background-color: #ff4444;
  }
  
  .disarmed {
    background-color: #44ff44;
  }
  
  .spacer {
    height: 15vh;
  }
  
  .control-container {
    height: 33.33vh;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    font-size: 16px;
  }
  
  button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
  }
  
  #status {
    margin: 0;
    font-size: 18px;
  }

  .status-circle #countdown {
    font-size: 54px;
    font-weight: bold;
    color: black;
  }

  .armed-status {
    font-size: 70px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
  }
