/* ================== Global Font Styling ================== */
body {
    font-family: 'Time New Roman', 'Helvetica Neue', sans-serif;
    background: #fdf915; /* Snapchat yellow */
    margin: 10px auto;
    padding: 20 px;
    text-align: center;
    font-size: 16px; /* Base font size */
    color: rgb(10, 4, 4);
  }
  
  /* Optional global override for font style */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI Semibold', sans-serif;
  }
  
  p, label, input, button {
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* ================== Logo and Icons Styling ================== */
  .snapchat-logo {
    width: 120px;
    height: auto;
    margin: 20px auto;
    display: block;
  }
  
  .snapchat-icon {
    font-size: 24px;
    color: #000;
    margin: 0 10px;
  }
  
  /* ================== Screen Styling ================== */
  .screen {
    display: none;
    padding-top: 100px;
  }
  
  .screen.active {
    display: block;
  }
  
  /* ================== Input Fields ================== */
  input {
    display: block;
    margin: 10px auto;
    padding: 12px;
    width: 80%;
    max-width: 320px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  
  /* ================== Buttons ================== */
  button {
    padding: 12px 24px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #222;
  }
  
  .camera-box {
    width: 300px;
    height: 400px;
    margin: 20px auto !important;
    background-color: #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
  }
  
  .snap-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 30px;
  }
  
  #snap-message {
    font-size: 20px;
    color: rgb(54, 175, 54);
    margin-top: 20px;
  }
  
  .bottom-nav {
    margin-top: 20px;
  }
  
  .bottom-nav button {
    margin: 5px;
    padding: 10px;
  }
  
  
  /* ================== Chat Box ================== */
  .chat {
    background-color: white;
    padding: 15px;
    margin: 20px auto;
    width: 80%;
    max-width: 350px;
    border: 1px solid #ccc;
    border-radius: 12px;
    text-align: left;
    font-size: 15px;
  }
  
  /* ================== Snap Preview Box ================== */
  .snap-box {
    background: #000;
    color: white;
    height: 300px;
    width: 300px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
  }
  
  /* ================== Story Container ================== */
  .story {
    background-color: #fff;
    margin: 10px auto !important;
    padding: 20px;
    width: 80%;
    max-width: 350px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
  }
  
  /* ================== Logout Button ================== */
  .logout-btn {
    background-color: #555;
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  
  .logout-btn:hover {
    background-color: #333;
  }
  
  /* ================== Reset Password Screen ================== */
  #reset-password-screen {
    text-align: center;
  }
  
  #reset-password-screen input {
    width: 80%;
    max-width: 320px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  #reset-password-screen button {
    width: 80%;
    max-width: 320px;
    margin-top: 20px;
    background-color: #4CAF50; /* Green for reset */
    font-size: 18px;
  }
  
  #reset-password-screen button:hover {
    background-color: #45a049;
  }
  
  /* ================== Login Screen Links ================== */
  #login-screen p a {
    color: #555;
    text-decoration: none;
  }
  
  #login-screen p a:hover {
    text-decoration: underline;
  }
  
  /* ================== Custom Font Style Classes (Optional) ================== */
  .font-bold {
    font-weight: bold;
  }
  
  .font-large {
    font-size: 20px;
  }
  
  .font-small {
    font-size: 12px;
  }
  .snapchat-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full screen height */
    flex-direction: column;
  }
  
  /* Camera Controls */
.camera-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

#switch-camera {
    background-color: #555;
    padding: 10px 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#password-strength {
    font-size: 14px;
    text-align: left;
    padding: 5px;
}

#verification-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
}

video {
    border-radius: 10px;
    object-fit: cover;
}


.camera-container {
  width: 100%;
  max-width: 400px;
  margin: auto;
  position: relative;
}

#camera-stream {
  width: 100%;
  border-radius: 10px;
  background: #000;
}

.snap-btn {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  font-size: 16px;
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.logout-btn {
  display: block;
  margin: 20px auto;
  font-size: 16px;
}