body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.cuerpo {
    margin-top: 100px;
}


h2 {
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background: #0288d1;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #026699;
}

p {
    color: red;
    font-size: 14px;
}

.cuerpo-calendario,
.cuerpo-gestion_citas {
    margin-top: 260px;
}

.menu {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0056b3;
    padding: 20px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.navbar-title {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.navbar-title img {
    width: auto;
    height: 50px;
}

.menu-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    background: #0069d9;
    border: 1px solid #004080;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.menu a:hover {
    background: #004080;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cuerpo-dashboard {
    margin-top: 1200px;
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #0056b3;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-top: 0;
}

.appointment {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0056b3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.appointment strong {
    color: #0056b3;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.buttons .details {
    background: #17a2b8;
    color: white;
}

.buttons .add {
    background: #28a745;
    color: white;
}

.buttons .cancel {
    background: #dc3545;
    color: white;
}

.buttons button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.calendar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.day {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    color: #0056b3;
    border: 1px solid #dee2e6;
}

.hours {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.hour {
    background: #e9ecef;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.hour:hover {
    background: #0056b3;
    color: white;
    cursor: pointer;
}

.add-appointment {
    margin-top: 20px;
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-appointment:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Mensaje de bienvenida */
.welcome-message {
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
