/* NMLS Lookup Loading Styles */
.nmls-loading-message {
    margin-top: 8px;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-left: 3px solid #0d6efd;
    color: #495057;
    font-size: 14px;
    border-radius: 3px;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
}

.nmls-loading-message::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 2px solid #0d6efd;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}
