/*
 * Iberdrola Simulador — Estilos botão PDF e container resultado
 * v1.0
 */

.iberdrola-pdf-container {
    margin-top: 20px;
    display: none;
}

.iberdrola-pdf-align-direita {
    text-align: right;
}

.iberdrola-btn-pdf {
    background: #006837;
    color: #fff;
    padding: 13px 32px;
    border-radius: 10px;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 104, 55, 0.20);
    font-family: inherit;
}

.iberdrola-btn-pdf:hover:not(:disabled) {
    background: #004d28;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 104, 55, 0.30);
}

.iberdrola-btn-pdf:active {
    transform: translateY(0);
}

.iberdrola-btn-pdf:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
    box-shadow: none;
}
