body {
    background-color: #007A86;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    height: 100%;
    margin: 0;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: black; 
}

#google_translate_element {
    float: right;
}

.header {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.logo {
    max-width: 150px; 
    max-height: 50px;
}

.info {
    max-height: 12px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"], select, input[type="number"], input[type="date"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #007A86;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #005f64;
}

#table-container {
    max-height: 300px; 
    overflow-y: auto; 
    margin-top: 20px;
}

#program-table {
    width: 100%;
    border-collapse: collapse;
}

#program-table th, #program-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    word-wrap: break-word;
}

#program-table th {
    background-color: #f2f2f2;
    white-space: normal;
}

#program-table tr:hover {
    background-color: #f1f1f1;
}

.selected-row {
    background-color: #d1e7f5;
}

@keyframes fillFormAnimation {
    0% { background-color: yellow; }
    100% { background-color: white; }
}

input.fill-animation {
    animation: fillFormAnimation 1s ease-out;
}

.swal2-styled.swal2-confirm {
    background-color: #007A86 !important;
}

.info-subtext {
    font-style: italic;
    font-size: 0.9em;
    color: gray;
    margin-bottom: 5px;
    padding-left: 15px;
}

#submitted_by {
  max-width: 640px;         
  margin-top: 1rem;
}

#submitted_by .form-row {
  display: grid !important;     
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

#submitted_by .field {
  min-width: 240px;           
}

#submitted_by .field label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 0.9em
}

#submitted_by input[type="text"],
#submitted_by input[type="email"] {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;              
  color: #000;                  
  box-sizing: border-box;
}

@media (max-width: 600px) {
  #submitted_by .form-row {
    grid-template-columns: 1fr;
  }
