/* ===============================
   EVOSTASH CREDIT – STYLE V3
   =============================== */

.evostash-calculator,
.evostash-form {
    max-width: 520px;
    margin: 30px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    font-family: Arial, Helvetica, sans-serif;
}

/* Titres */
.evostash-calculator h3,
.evostash-form h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #1b1d21;
}

/* Champs */
.evostash-calculator input,
.evostash-form input,
.evostash-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    box-sizing: border-box;
}

/* Boutons */
.evostash-calculator button,
.evostash-form button {
    width: 100%;
    padding: 12px;
    background: #1f7aec;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.evostash-calculator button:hover,
.evostash-form button:hover {
    background: #155ec4;
}

/* Résultat calcul */
#result {
    margin: 15px 0;
    padding: 12px;
    background: #f5f8ff;
    border-left: 4px solid #1f7aec;
    font-size: 15px;
    color: #1b1d21;
}

/* Checkbox */
.evostash-form label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 15px 0;
}

.evostash-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

/* Bouton ouvrir formulaire */
#open-form {
    margin-top: 15px;
    background: #2bb673;
}

#open-form:hover {
    background: #21935c;
}

/* Responsive */
@media (max-width: 600px) {
    .evostash-calculator,
    .evostash-form {
        padding: 20px;
    }
}


