/* General styles for the entire app */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
      Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
  }
  
  h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  button {
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    outline: none;
  }
  
  button:hover {
    opacity: 0.8;
  }
  
  /* Safe Word Generator styles */
  .safe-word {
    font-size: 48px;
    color: green;
    margin-top: 20px;
  }
  
  .countdown {
    font-size: 24px;
    color: red;
    margin-top: 10px;
  }
  
  /* Login Button styles */
  .login-btn {
    background-color: green;
    color: white;
  }
  
  .login-btn:hover {
    background-color: darkgreen;
  }
  
  /* Logout Button styles */
  .logout-btn {
    background-color: red;
    color: white;
  }
  
  .logout-btn:hover {
    background-color: darkred;
  }
  