/* style.css */
.form-label {
    width: 150px;
    font-weight: 600;
    min-width: 150px;
    display: inline-block;
}

.form-control {
    width: 300px;
    height: 40px;
    display: inline-block;    
}

textarea.form-control {
    width: 300px !important;
    max-width: 300px !important;
    min-width: 300px !important;
    box-sizing: border-box;
}

.form-select {
    width: 300px !important;
    height: 40px !important;
    padding: 6px 12px;
    box-sizing: border-box;
    display: inline-block;
}

body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

h1 {
    color: #333;
    text-align: center;
}

p {
    color: #555;
    font-size: 16px;
}
/* Blinking effect for links that are blank */
.blank {
    color: blue;
    font-weight: bold;
    animation: blink 3s infinite;
}
/* Blinking effect for links that have error */
.error {
    color: red;
    font-weight: bold;
    animation: blink 3s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.mission-text {
    font-style: italic;
    font-weight: bold;
}

th a {
  text-decoration: none !important;
  color: inherit !important;
  font-weight: 600;
}

th a:hover {
  color: inherit;
  text-decoration: none;
}

.btn-fixed-width {
    min-width: 100px;
    text-align: center;
}

/* Collapse toggle arrows */
.collapse-toggle.collapsed::after {
    content: "▼";
    font-size: 0.9rem;
}
.collapse-toggle::after {
    content: "▲";
    font-size: 0.9rem;
}