/* styles.css - Safe for UI enhancements */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
      margin: 0;
      font-family: 'Inter';
      background: #f2f2f2;
    }

    #login-screen, #app {
      display: none;
      height: 100vh;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    #login-screen {
      display: flex;
      background: url('background.jpg') no-repeat center center fixed;
      background-size: cover;
    }

    .login-box {
      background: rgba(255, 255, 255, 0.85);
      padding: 2rem 3rem;
      border-radius: 12px;
      text-align: center;
    }

    .login-box img {
      width: 150px;
      margin-bottom: 1rem;
    }

    button {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      margin-top: 1rem;
      border: 1px solid #333;
      border-radius: 6px;
      background: white;
      cursor: pointer;
    }

    #app {
      display: none;
      flex-direction: column;
      gap: 1rem;
      padding: 2rem;
      background: white;
    }

    video {
      width: 100%;
      max-width: 100%;
      max-height: 80vh;
      border: 2px solid #aaa;
      border-radius: 8px;
    }

    input {
      font-size: 1rem;
      padding: 0.5rem;
    }

   #app-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

#camera-container {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 60vh;
}

video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

#main-header {
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.nav-logo {
  height: 20px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav ul li a:hover {
  color: #0078d4;
}