.calendar-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.calendar-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.calendar-controls {
    display: flex;
    align-items: center;
}

.calendar-navigation {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.calendar-nav-prev,
.calendar-nav-next,
.calendar-nav-today,
.add-event-button,
.view-button {
    background: none;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #495057;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
}

.calendar-nav-prev:hover,
.calendar-nav-next:hover,
.calendar-nav-today:hover,
.add-event-button:hover,
.view-button:hover {
    background-color: #e9ecef;
}

.icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.view-controls {
    display: flex;
    align-items: center;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    width: 10rem;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #495057;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #e9ecef;
}

.calendar-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: 1px solid #dee2e6;
    border-top: none;
    background-color: #f8f9fa;
    text-align: center;
    font-weight: 600;
    color: #495057;
}

.weekday {
    padding: 0.75rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: minmax(2rem, auto);
    gap: 1px;
    background-color: #dee2e6;
    border: 1px solid #dee2e6;
    border-top: none;
}

.day {
    background-color: #fff;
    text-align: center;
    padding: 0.4rem;
    position: relative;
    cursor: pointer;
    font-size: 20pt;
    color: #051425;
}

.day:hover {
    background-color: #e9ecef;
}

.prev-month,
.next-month {
    color: #adb5bd;
}

.today {
    background-color: #e9ecef;
}

.selected {
    background-color: #343a40;
    color: #fff;
}

.events {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 0.5rem;
}

.event {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.event-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #495057;
}

.event-link:hover .event-title {
    color: #007bff;
}

.event-title {
    font-weight: 500;
    flex-grow: 1;
}

.event-time {
    font-size: 0.875rem;
    color: #6c757d;
}

a {
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listaPistas {
    outline: none;
    padding-top: 1rem;
}

.card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    background: #ffffff;
}

.card-title {
    font-size: 18pt;
    font-weight: 600;
    color: #1E2A39;
    margin: 0;
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.card-horas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;

}

.card-horas .hora {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.25rem;
    cursor: pointer;
}

.status {
    background-color: #1E2A39;
    color: #FFF;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
}

.card-body {
    padding: 0;
}

.card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: #666;
}

.divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 1rem 0;
}

.progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.progress-circle {
    width: 1.5rem;
    height: 1.5rem;
}

.progress-bg {
    stroke: #e0e0e0;
}

.progress-bar {
    stroke: #007bff;
}

.updated {
    font-size: 0.875rem;
    color: #999;
}

/* Informacion Personal */

.container {
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.title {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.description {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.form {
    margin-top: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 1;
}

.label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
}

.input {
    margin-top: 0.5rem;
    padding: 0.625rem;
    font-size: 0.875rem;
    color: #333;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .form-group {
        grid-column: span 3;
    }

    .full-width {
        grid-column: span 6;
    }
}

button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #1E2A39; /* Azul oscuro del logo */
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px; /* Bordes redondeados */
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #7BC043; /* Verde del logo */
    color: #1E2A39; /* Azul oscuro para contraste */
    transform: scale(1.05); /* Ligero aumento */
}