body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
}

.camera-section {
  flex: 2;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

#camera-feed {
  width: 100%;
  height: auto;
  display: block;
}

.controls-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.button-group,
.attendance-group,
.download-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

button {
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: white;
  background-color: #007bff;
  transition: background-color 0.3s ease;
}

button:hover:not(:disabled) {
  background-color: #0056b3;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.status-box {
  margin-top: 20px;
  padding: 15px;
  background-color: #e9ecef;
  border-radius: 5px;
  text-align: center;
}

