/*
Template Name: Velzon - Admin & Dashboard Template
Author: Themesbrand
Website: https://themesbrand.com/
Contact: support@themesbrand.com
File: Custom Css File
*/


.btn-danger {
    background: #e42e2b;
}

.header-profile-initial {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; /* Adjust the size as needed */
    height: 40px; /* Adjust the size as needed */
    background-color: #d9d9d9;
    color: #7c7c7c;
    font-size: 16px; /* Adjust the font size as needed */
    font-weight: 500;
    border-radius: 50%;
    text-transform: uppercase; /* Ensures the initial is capitalized */
}

.color-combobox-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.color-combobox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 8px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: smaller;
    /* Initially, the border and background are set inline on the element */
    outline-width: 0;
    text-align: center;
    cursor: pointer;
    min-width: 150px;
    padding-right: 20px;
}

    .color-combobox:focus-visible {
        outline-width: 0;
    }

.color-combobox-wrapper::after {
    content: "\2B9F"; /* Unicode down arrow */
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: white;
}


.listjs-pagination li.active .page {
    color: #fff; /* Text color for active state */
    background-color: #303030; /* Background color for active state */
    border-color: #303030; /* Border color for active state */
    border-radius:20px;
}

/* Inactive state: Applies to .page within li elements that do NOT have the active class */
.listjs-pagination li:not(.active) .page {
    color: gray; /* Text color for inactive state */
    background-color: #fff; /* Background color for inactive state */
    border-color: #ccc; /* Border color for inactive state */
    border-radius: 20px;
}