/* css/email-protection.css */
.protected-email-container {
    display: inline-block;
    margin: 5px 0;
}

.show-email-btn {
    background-color: #1e3799;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.show-email-btn:hover {
    background-color: #2850c8;
}

.show-email-btn .btn-text {
    display: inline-block;
}

.show-email-btn .email-display {
    display: none;
    margin-left: 8px;
}

.show-email-btn.revealed {
    background-color: #2ecc71;
}

.show-email-btn.revealed .btn-text {
    display: none;
}

.show-email-btn.revealed .email-display {
    display: inline-block;
}