.lsab-container {
    margin: 10px 0;
    text-align: center;
}

.lsab-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.lsab-btn:hover:not(:disabled) {
    background: #005a87;
}

.lsab-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.lsab-message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    min-height: 20px;
    font-size: 14px;
}

.lsab-message.lsab-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.lsab-message.lsab-error {
    background: #ffebee;
    color: #c53030;
    border: 2px solid #feb2b2;
    font-weight: bold;
}

/* Strong blinking animation for error messages */
.lsab-message.lsab-blinking {
    animation: blink 0.6s ease-in-out infinite;
}

@keyframes blink {
    0% {
        background: #fed7d7;
        border-color: #feb2b2;
        color: #c53030;
        transform: scale(1);
    }
    50% {
        background: #ff0000;
        border-color: #ff0000;
        color: white;
        transform: scale(1.02);
    }
    100% {
        background: #fed7d7;
        border-color: #feb2b2;
        color: #c53030;
        transform: scale(1);
    }
}

/* Alternative more noticeable blinking */
.lsab-message.lsab-error.lsab-blinking {
    animation: pulse 0.8s infinite;
}

@keyframes pulse {
    0% {
        background-color: #fed7d7;
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7);
    }
    70% {
        background-color: #feb2b2;
        box-shadow: 0 0 0 10px rgba(229, 62, 62, 0);
    }
    100% {
        background-color: #fed7d7;
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
    }
}