
:root {
    --ct-logo-lg-height: 50px;
    --ct-logo-sm-height: 35px;
}

/* Fix left padding for choices element */
.choices__list--dropdown {
    padding-left: 10px !important;
    padding-right: 10px !important; /* adding right padding for symmetry */
}

/* Keep consistent padding for search input */
.choices__input--cloned {
    padding-left: 10px !important;
}

/* change background image for auth pages */
.auth-bg {
    background-image: url(/static/custom/images/backgrounds/bg-auth.jpg);
}

.table-head-short th {
    width: 250px; /* Fixed width */
    max-width: 250px; /* Maximum width */
    min-width: 150px; /* Minimum width */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .table-head-short th {
        width: 150px; /* Smaller width on mobile */
        max-width: 150px;
        min-width: 100px;
    }
}