.required {
    color: red;
}

.offcanvas-size-30 {
    width: 30% !important;
}

.offcanvas-size-50 {
    width: 50% !important;
}

.offcanvas-size-85 {
    width: 85% !important;
}

.table-view-1 {
    width: 1%;
}

.table-view-5 {
    width: 5%;
}

.table-view-10 {
    width: 10%;
}

.table-view-15 {
    width: 15%;
}

.table-view-20 {
    width: 20%;
}

.table-view-30 {
    width: 30%;
}

.table-view-40 {
    width: 40%;
}

.table-view-50 {
    width: 50%;
}

.table-responsive {
    min-height: 400px !important;
}

.dt-search,
.dt-length {
    display: none !important;
}

.form-check-input:checked {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

.active>.page-link,
.page-link.active {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

.logo-lg {
    height: 48px;
    /* or whatever size you prefer */
}

/* Style for our custom error container */
#vendor-error-container {
    font-weight: normal !important;
    width: 100%;
    font-family: inherit !important;
    margin-top: 0.25rem !important;
    font-size: 0.875em !important;
    color: #ff7f7f !important;
}

.custom-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"],
.custom-tooltip-dark.bs-tooltip-bottom {
    --bs-tooltip-bg: #222;
    --bs-tooltip-color: #fff;
    background-color: #222 !important;
    color: #fff !important;
}

.select2-selection__choice__remove {
    float: right;
    margin-left: 5px;
    /* I added to separate a little bit */
}

.select2-selection--multiple:before {
    content: "";
    position: absolute;
    right: 7px;
    top: 42%;
    border: 0px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #212529 !important;
    padding-right: 0px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #212529 !important;
    color: white;
}

@media (min-width: 991px) {
    .filter-dropdown {
        width: 120px !important;
    }
}

.navbar-menu .navbar-nav .nav-link:hover {
    color: #0082BD !important;
}

/* ACTIVE LINK – SAME COLOR + BOTTOM BORDER */
.navbar-menu .navbar-nav .nav-link.active-menu {
    color: #0082BD !important;
    border-bottom: 2px solid #0082BD !important;
    padding-bottom: 8px;
}

/* Remove Velzon active background */
.navbar-menu .navbar-nav .nav-link.active,
.navbar-menu .navbar-nav .nav-link:active {
    background: transparent !important;
}

.footer-link {
    color: #000;
    text-decoration: underline;
}

.footer-link.active-link {
    color: #0082BD !important;
    /* Blue for active page */
}

.footer-link:hover {
    color: #0082BD !important;
}

.announcement-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeIn 0.4s ease-in-out;
}

.announcement-popup {
    background: #fff;
    width: 420px;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.announcement-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.announcement-desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 0;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    transition: 0.2s;
}

.close-btn:hover {
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer ko screen ke bottom pe fix karna */
.footer {
    /* position: fixed; */
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f8f9fa;
    /* Footer background color */
    padding: 10px 0;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    /* z-index: 9999;   */
    /* Footer hamesha top layer pe rahe */
}

#globalLoader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#globalLoader i {
    font-size: 50px;
    color: #0082BD;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}
.page-title-wrapper {
    margin-left: auto;   /* right side le jaane ke liye */
    padding-right: 20px;
}

.page-title {
    color: #fff;
    font-weight: 500;
}