h1 {
    border-bottom: 1px dashed;
    color: #008000;
    font-size: 1.4rem;
    width: 100%;
    font-variant: small-caps;
    margin-bottom: 0.4rem;
}

h2 {
    color: #008000;
    font-size: 1.1rem;
    margin-top: 1rem;
    width: 100%;
}

h3 {
    color: #ff4d00;
    font-size: 1.05;
    margin-top: 1rem;
    width: 100%;
}

h4 {
    margin-top: 0.75rem;
    width: 100%;
}

a {
    text-decoration: none;
    color: #ff4d00;
    font-weight: bold;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

p {
    text-align: justify;
    margin: 0.5rem 0;
}

p > span.highlight {
    color: #008000;
    font-style: italic;
}

ul {
    margin-left: 2rem;
}

button {
    background-color: #ff4d00;
    border: none;
    color: #ffffff;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin: 0.5rem 0.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
}

table tr th {
    text-align: left;
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background-color: #f44336;
    color: white;
    display: flex;
    justify-content: center;
}

.box {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    background-color: #f2f2f2;
    color: black;
    display: flex;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
}

.form .form-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.form .form-control label:not(.no-flex-grow) {
    flex-basis: 100%;
}

.form .form-control.form-control-vertical {
    flex-direction: column;
    align-items: start;
}

.form .form-control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form .form-control textarea {
    font-family: inherit;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    resize: vertical;
}

.form .form-control input[type="checkbox"] {
    transform: scale(1.5);
}

.form .form-control input[type="text"],
.form .form-control input[type="password"],
.form .form-control input[type="email"],
.form .form-control input[type="number"],
.form .form-control input[type="date"] {
    font-family: inherit;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
}

.form .form-control input[type="text"]:focus,
.form .form-control input[type="password"]:focus,
.form .form-control input[type="email"]:focus,
.form .form-control textarea,
.form .form-control input[type="number"]:focus,
.form .form-control input[type="date"]:focus {
    outline-color: #ff4d00;
}

.form .form-control button[type="submit"] {
    margin-left: auto;
}

.form span.form-divider {
    border: 1px solid #ccc;
    width: 100%;
}
