/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
/* Header styling */
.page-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Container for login and manage forms */
.container, .form-container, .forms-list {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    margin-top: 20px;
}

/* Styling for form groups */
.form-group {
    margin-bottom: 15px;
}

/* Styling for input fields */
input[type="text"], input[type="password"], input[type="number"], input[type="date"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Styling for submit button */
.boton-salir, input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Error messages styling */
.errors, span[style="color: red;"] {
    color: red;
    font-size: 0.9em;
}

/* Links styling */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header and titles */
h1, h2 {
    color: #333;
}

/* List styling */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

li:last-child {
    border-bottom: none;
}
