/* Style for the form container */
form {
  max-width: 650px;
  margin: 5px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f8f8f8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

/* Style for form labels */
form label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

/* Style for input fields and textarea */
form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="url"],
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1em;
  transition: border-color 0.3s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  border-color: #4CAF50;
  outline: none;
}

/* Style for the submit button */
form button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #4CAF50;
  color: white;
  font-size: 1em;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #45a049;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  form {
      padding: 15px;
  }
}

/* Heading style */
h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  margin-top: 60px;
}

/* Table styling */
table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-left: 310px
}

/* Table headers */
table th {
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  font-weight: bold;
  text-align: left;
}

/* Table data cells */
table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  color: #333;
}

/* Alternate row coloring */
table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Hover effect for table rows */
table tr:hover {
  background-color: #f1f1f1;
}

/* No submissions message */
p {
  text-align: center;
  color: #666;
  font-size: 1.1em;
}


.navbar {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 62px
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Style the Select Dropdown */
select {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #333;
  outline: none;
  cursor: pointer;
}

/* Style the Select Dropdown when focused */
select:focus {
  border-color: #333;
  background-color: #e6e6e6;
}

/* Style the Select Dropdown Options */
option {
  padding: 10px;
  font-size: 16px;
}

/* Optional: Style the Label */
label {
  font-weight: bold;
  margin-bottom: 4px;
  display: block;
}


.file-upload-container {
  display: flex;
  align-items: center;
  gap: 20px; /* Adjust gap between elements as needed */
}

.file-upload-container div {
  width: 200px; /* Set desired width for each field container */
}

.file-upload-container label {
  display: block;
  margin-bottom: 5px;
}