/* styles.css */

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.tv-series-form {
  margin: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Form Styles */
form {
  margin-top: 20px;
}

label {
  display: block;
  margin-top: 10px;
}

input[type="text"],
input[type="number"],
textarea {
  width: 100%;
  padding: 5px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

button {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

/* Season and Episode Styles */
h3, h4 {
  margin-top: 15px;
}

#seasons div {
  border: 1px solid #eee;
  padding: 10px;
  margin-top: 10px;
}

#seasons input[type="text"] {
  width: 80%;
}

#seasonEpisodeFields {
  margin-top: 10px;
}

#seasonEpisodeFields input {
  width: 45%;
  margin-top: 5px;
}

#seasonEpisodeFields label {
  display: inline-block;
  width: 45%;
}

#seasonEpisodeFields label:first-child {
  margin-right: 10px;
}

#seasonEpisodeFields input[type="number"] {
  width: 45%;
}

/* Horizontal Line */
hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/* Firebase Scripts */
script[src^="https://www.gstatic.com/firebasejs"] {
  display: none; /* Hide Firebase scripts from view */
}