/* Mantener el estilo visual del campo readonly pero permitir entrada */
.form-input-styled {
    background: rgba(255, 255, 255, 0.95) !important;
    cursor: text !important;
    color: #22274f !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    text-align: center !important;
    letter-spacing: 1px !important;
}

.form-input-styled:focus {
    background: rgba(255, 255, 255, 0.98) !important;
    cursor: text !important;
}

/* Estilos para los botones de acción */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.action-button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.clear-button {
    background: linear-gradient(135deg, #6c6c6c 0%, #505050 100%);
    color: white;
}

.clear-button:hover {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.submit-button {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.submit-button:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

/* Estilos para las tarjetas de información */
.info-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    align-items: stretch;
    /* Para que tengan la misma altura */
}

.info-card {
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex: 1;
    /* Para que ocupen el mismo ancho */
    max-width: 200px;
    min-width: 150px;
    color: white;
    font-weight: 500;
}

/* Primera tarjeta - Azul institucional */
.info-card:nth-child(1) {
    background: linear-gradient(135deg, #22274f 0%, #364491 100%);
    border-color: #364491;
}

.info-card:nth-child(1):hover {
    background: linear-gradient(135deg, #364491 0%, #22274f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(34, 39, 79, 0.3);
}

/* Segunda tarjeta - Naranja institucional */
.info-card:nth-child(2) {
    background: linear-gradient(135deg, #fda117 0%, #ff8c00 100%);
    border-color: #ff8c00;
}

.info-card:nth-child(2):hover {
    background: linear-gradient(135deg, #ff8c00 0%, #fda117 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(253, 161, 23, 0.3);
}

/* Tercera tarjeta - Verde */
.info-card:nth-child(3) {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    border-color: #218838;
}

.info-card:nth-child(3):hover {
    background: linear-gradient(135deg, #218838 0%, #28a745 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.3);
}

.info-card-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.info-card-content {
    flex: 1;
}

.info-card-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.info-card-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

/* Estilos para la fecha de hoy */
.todays-date {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.date-text {
    color: #22274f;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(34, 39, 79, 0.1);
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
    .info-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        min-width: 280px;
        max-width: 320px;
        flex: none;
    }

    .date-text {
        font-size: 14px;
    }
}