/**
 * Styles frontend pour WP Password Protection
 */

/* Bouton de déconnexion shortcode */
.chacc-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chacc-logout-btn:hover {
    background: #bb2d3b;
    transform: translateY(-1px);
}

.chacc-logout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.chacc-logout-btn .chacc-loading {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: chacc-spin 0.8s linear infinite;
}

@keyframes chacc-spin {
    to { transform: rotate(360deg); }
}
