/**
 * Styles frontend pour Azraia Access Manager
 */

.azraia-access-message {
    background-color: #1e1e2d; /* Fond sombre */
    border: 1px solid #2d2d42; /* Bordure légèrement plus claire */
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #e0e0e0; /* Texte clair sur fond sombre */
}

.azraia-access-message h3 {
    color: #ff6b6b; /* Titre en couleur accentuée */
    margin-top: 0;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.azraia-access-message p {
    color: #bdbdbd; /* Texte légèrement plus clair que le titre */
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.6;
}

.azraia-access-button {
    display: inline-block;
    background-color: #ff6b6b; /* Bouton de couleur accentuée */
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: none;
    font-size: 1.05em;
}

.azraia-access-button:hover {
    background-color: #ff5252; /* Légèrement plus foncé au survol */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
    text-decoration: none;
}

.azraia-chatbot-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
