/* Base styles */
body {
  font-family: 'Roboto', sans-serif; /* Updated font family */
  margin: 0;
  padding: 0;
  background-color: #1e1e1e;
  color: #fff; /* Keep body text color as white if needed */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  height: 100%;
  overflow: hidden;
}

.container {
  display: flex;
  width: 100vw;
  height: 100vh;
  gap: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* Controls section styling */
.controls-section {
  display: flex;
  flex-direction: column;
  width: 25%;
  background-color: #2b2b2b;
  padding: 20px;
  gap: 15px;
  border-radius: 10px 0 0 10px;
  overflow-y: auto;
  max-height: 100%;
}

.controls-section h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: #000; /* Black text color */
}

/* Updated Button and Select Styling */
button, select {
  background: linear-gradient(45deg, #ff7e00, #ffba5c);
  border: none;
  border-radius: 6px;
  color: #000; /* Black text color */
  padding: 12px; /* Increased padding for larger button size */
  font-size: 16px; /* Larger font size */
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  margin-top: 10px; /* Space between buttons */
}

button:hover, select:hover {
  background: linear-gradient(45deg, #ff5e00, #ff9e5c);
}

button:focus, select:focus {
  outline: none;
  box-shadow: 0 0 4px #ff9e5c;
}

/* Input Field Styling */
input[type="text"], input[type="file"], input[type="range"] {
  background-color: #333;
  color: #000; /* Black text color */
  border: 1px solid #555;
  border-radius: 6px;
  padding: 10px;
  font-size: 16px; /* Increased font size */
  margin-top: 10px; /* Space between input fields */
  width: 100%;
  box-sizing: border-box;
}

input[type="text"]::placeholder {
  color: #000; /* Placeholder color as black */
}

/* Range Slider Styling */
input[type="range"] {
  width: 100%;
  margin-top: 10px;
}

/* List and individual source item styling */
ul#source-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

ul#source-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px;
  background-color: #4b4b4b;
  color: #000; /* Black text color */
  margin-bottom: 5px;
  border-radius: 4px;
  align-items: center;
  font-size: 16px;
}

/* Video container section styling */
.video-container-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 0;
  background-color: #111;
  border-radius: 0 10px 10px 0;
}

.video-container {
  width: 100%;
  height: 100%;
  background-color: #000;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .controls-section {
    width: 100%;
    border-radius: 0;
  }

  .video-container-section {
    width: 100%;
    border-radius: 0;
  }
}

/* Google Login Button Styling */
#login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000; /* Black text color */
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

#login-btn:hover {
  background-color: #f5f5f5;
}

#login-btn:focus {
  outline: none;
  box-shadow: 0 0 3px #4285f4;
}

/* Google Icon (simulated with a text circle) */
#login-btn::before {
  content: "G";
  display: inline-block;
  font-weight: bold;
  color: #4285f4; /* Google blue color */
  background-color: transparent;
  margin-right: 10px;
  font-size: 18px;
}
