/** Still empty stylesheet **/
/* AI Tools Backend Menu Icon */

/* Core Contao approach - background image on group element */
#tl_navigation .group-ai_tools {
    background: url('../../bundles/contaoopenaiassistant/icons/ai-tools.svg') 3px 2px no-repeat;
    background-position: left;
}

/* Remove API Status Indicator Styles and related rules */ 

.api-key-check-wrapper {
    display: block;
    margin-top: 8px;
    margin-bottom: 4px;
    position: relative;
    z-index: 3;
}

.api-key-check-wrapper .api-key-result {
    margin-left: 10px;
}

.api-key-check-wrapper .processing-spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
    border-top: 2px solid #007acc;
    border-radius: 50%;
    animation: api-key-spin 1s linear infinite;
    margin-right: 5px;
    vertical-align: middle;
}

@keyframes api-key-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
