/*CSS for cell : inexus*/
.llm-box 
{

    background: #fff;
    color: #333;
    font-size: 12px;
    padding: 8px;
    border: 2px solid #feb300;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border 0.3s;
    text-align: center;
}

.llm-spinner 
{
    width: 20px;
    height: 20px;
    border: 3px solid #ccc;
    border-top: 3px solid #feb300;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 6px;
}

.llm-box-text 
{
    white-space: pre-line;
    font-size: 11px;
    padding-top: 4px;
}

.llm-progress 
{
    width: 100%;
    height: 5px;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 4px;
    overflow: hidden;
    position: relative;
}

.llm-progress-fill {
    height: 100%;
    background-color: #feb300;
    transition: width 0.3s ease;
    width: 0%;
}

@keyframes spin 
{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
                