/* Forms and Input Controls */

label,
.label-header {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="file"],
select,
textarea {
    width: calc(100% - 18px);
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    min-height: 70px;
    resize: vertical;
}

button {
    padding: 10px 15px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.action-button {
    background-color: #00558c;
}

.action-button:hover {
    background-color: #003e6b;
}

.secondary-button {
    background-color: #6c757d;
}

.secondary-button:hover {
    background-color: #5a6268;
}

.form-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
}

.form-section h3 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.inline-group label,
.checkbox-inline label {
    display: inline-block;
    margin-right: 10px;
    font-weight: normal;
}

.inline-group input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
}
