/*
 * SIMA Integration Public CSS
 */

/* Центрируем весь контейнер */
#sima-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 400px; /* Ограничим ширину для лучшего вида на больших экранах */
    margin: 20px auto;  /* Центрируем сам блок на странице */
}

/* Стили для кнопки "Sign with SIMA" */
#sima-sign-button {
    background-color: #0073aa; /* Стандартный синий цвет WordPress */
    color: white;
    border: none;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Эффект при наведении на кнопку */
#sima-sign-button:hover {
    background-color: #005a87; /* Более темный синий */
}

/* Контейнер для QR-кода */
#sima-qr-code-container {
    margin-top: 20px;
}

/* Текст статуса под QR-кодом */
#sima-status {
    margin-top: 15px;
    font-style: italic;
    color: #555;
    font-size: 14px;
}