.elementor-3086 .elementor-element.elementor-element-91a75fe{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-f2d8ec6 *//* Container for the navigation links */
.crew-steps-nav a {
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #00509e;
  background-color: transparent;
  border: 2px solid #00509e;
  padding: 10px 20px;
  margin: 5px 8px 5px 0;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
}

.crew-steps-nav a:hover:not(.active) {
  background-color: #00509e;
  color: #fff;
  border-color: #003366;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.15);
}

.crew-steps-nav a.active {
  background-color: #003366;
  color: #fff;
  border-color: #003366;
  cursor: default;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
}

/* Optional: Disabled button style */
.crew-steps-nav a.disabled {
  color: #999;
  border-color: #ccc;
  cursor: not-allowed;
  background-color: #f5f5f5;
  box-shadow: none;
  pointer-events: none;
}

/* Responsive wrap */
.crew-steps-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-bottom: 1rem;
}


/* Heading style */
.crew-upload-heading {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #003366;
  font-size: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #00509e;
  padding-bottom: 6px;
}

/* Container for each upload form */
.uploadForm {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid #00509e;
  background-color: #f0f7ff;
  border-radius: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #003366;
}

/* Headings inside forms */
.uploadForm h4 {
  margin-bottom: 15px;
  color: #003366;
  font-weight: 700;
  font-size: 1.2rem;
  border-bottom: 2px solid #00509e;
  padding-bottom: 6px;
}

/* Style inputs */
.uploadForm input[type="file"],
.uploadForm input[type="text"],
.uploadForm input[type="date"] {
  display: block;
  width: 100%;
  max-width: 350px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1.5px solid #00509e;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #003366;
  transition: border-color 0.3s ease;
}

.uploadForm input[type="file"] {
  padding: 3px 12px;
}

/* Focus state */
.uploadForm input[type="text"]:focus,
.uploadForm input[type="date"]:focus,
.uploadForm input[type="file"]:focus {
  border-color: #003366;
  outline: none;
}

/* Checkbox label */
.uploadForm label {
  font-size: 1rem;
  color: #003366;
  margin-bottom: 12px;
  display: inline-block;
  cursor: pointer;
}

/* Submit button */
.uploadForm button[type="submit"] {
  background-color: #00509e;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.uploadForm button[type="submit"]:hover {
  background-color: #003366;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #003366;
}

th, td {
  border: 1px solid #00509e;
  padding: 12px 15px;
  text-align: left;
  vertical-align: middle;
}

th {
  background-color: #00509e;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

td a {
  color: #00509e;
  text-decoration: underline;
}

td a:hover {
  color: #003366;
  text-decoration: none;
}

/* Detach button inside table */
table button {
  background-color: #c0392b; /* red */
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

table button:hover {
  background-color: #922b21;
}

/* Detail rows under file rows */
table tr:nth-child(odd) td[colspan="3"] {
  background-color: #e6f0ff;
  font-size: 0.9rem;
  padding-left: 25px;
  color: #003366;
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
  .uploadForm input[type="file"],
  .uploadForm input[type="text"],
  .uploadForm input[type="date"] {
    max-width: 100%;
  }
  table, th, td {
    font-size: 0.9rem;
  }
  table th, table td {
    padding: 10px 8px;
  }
}

/* Ensure no underline on the download link */
.download-btn {
    display: inline-block;
    background-color: #00509e;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;  /* Remove underline */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #003366;
}/* End custom CSS */