﻿
/*LLM Maintenance*/

.status-badge {
    display: inline-block;
    padding: 3px 4px 0px 4px;
    border-radius: 50px;
    position: absolute;
    top: 12px;
    right: 12px;
    /*  color:#ffffff; */
    /*         font-weight: bold; */
}

    /* .status-badge.active {
            background-color: #28a745;  Green background for active
                color: #ffffff;
            
        } */

    .status-badge.inactive {
        background-color: #ffc107; /* Orange-red background for inactive */
        color: #ffffff;
    }

.model-name {
    margin-right: 10px;
}

/* Hide the number input arrows in webkit-based browsers (Chrome, Safari) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide the number input arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

