@charset "UTF-8";
/* CSS Document */

.pht-resultat {
    display: none; /* Masqué au départ */
    margin-top: 30px;
    padding: 20px;
    background-color: #e0f4ff; /* fond bleu pâle */
    border-left: 5px solid #2ea3f2; /* trait bleu Divi */
    border-radius: 8px;
    font-size: 20px;
    color: #006699;
    text-align: center;
    font-weight: 600;
    animation: fadeIn 0.8s ease forwards;
}

/* Animation douce */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.pht-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'12'%20height%3D'8'%20viewBox%3D'0%200%2012%208'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1.41%200L6%204.58%2010.59%200%2012%201.41l-6%206-6-6L1.41%200z'%20fill%3D'%23666'%2F%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 8px;
}

.pht-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
    max-width: 500px;
    margin: 40px auto;
    font-family: inherit;
}

.pht-field {
    margin-bottom: 20px;
}

.pht-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.pht-field input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.pht-button-container {
    text-align: center;
    margin-top: 20px;
}

.pht-button {
    background-color: #eb621d; /* Couleur bleue Divi */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pht-button:hover {
    background-color: #eb621d;
}

.pht-resultat {
    margin-top: 30px;
    font-size: 20px;
    text-align: center;
}

