
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Adjust values as needed */
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition for shadow and lift */
}

/* Add a more pronounced shadow on hover */
 .card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover*/
    /*transform: translateY(-5px);  Optional: Adds a slight "lift" effect */
}

.sec-button{
    background-color: #fb4928;
    color: white;

}

input.form-control,
textarea.form-control,
select.form-control{
    border: 1px solid #a6a6a7;
}

.sec-button:hover{
    background-color: #fd9d0d;
    color: white;
}

.sec-button .fa,.fas{
    color: white;

}

.pri-button{
    background-color: #262f79;
    color: white;
}

.pri-button .fa,.fas{
    color: white;
}

button .fa,.fas{
    color: white;
}

.pri-button:hover{
    background-color: #5b40d0;
    color: white;
}

.fa, .fas{
    color: #5b40d0;
}

/* .cart .fa, .fas{
    color: white;
} */

.featured-text{
    background-color: #fd9d0d;
    color: white;
    justify-items: center;
    padding: 5px;
}

.carousel-indicators li{
    list-style: none;
}

.main-content{
      background-image: url();
}

.back-img::before {
    content: ""; /* Essential for pseudo-elements */
    position: absolute; /* Position over the whole parent */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/build/icons/login-img.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4; /* Adjust this value for the background image's opacity */
    z-index: -1; /* Place behind the content */
}

.login-img::before {
    content: ""; /* Essential for pseudo-elements */
    position: absolute; /* Position over the whole parent */
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-image: url('/build/images/caps.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1; /* Adjust this value for the background image's opacity */
    z-index: -1; /* Place behind the content */
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* background-image: 'f110'; */
    transition: opacity 0.5s ease-out;
}

/* Optional: Spinner animation */
/* .loader {
    /* border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px; */
    /* animation: spin 1.5s linear infinite;
} */

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

/* When the screen is hidden */
#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-img-wrap{
    border: 1px solid #a6a6a7;
    border-radius: 15px;
        margin-bottom: 10px;
    /*padding: 10px; */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
}

        .btn.loading {
            position: relative;
            color: transparent !important;
            pointer-events: none;
            background-color: #fb4928; /* Match the button's background color */
        }

        .btn.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 1.5em;
            height: 1.5em;
            margin-top: -0.75em;
            margin-left: -0.75em;
            border: 0.25em solid rgba(255, 255, 255, 0.3);
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        /* Keyframes for the spinning animation */
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

#companyForm {
    scroll-margin-top: 110px;
}

.filter-dropdown-container {
    position: relative;
}

/* Custom styles for the filter dropdown */
.filter-dropdown {
    position: absolute;
    top: 100%; /* Position below the header */
    left: 0;
    z-index: 1050; /* High z-index like Bootstrap dropdowns */
    max-height: 200px; /* Limit height for scroll */
    overflow-y: auto;
    /* Hidden by default, shown on hover */
    display: none;
    min-width: 150px;
}

/* Explicitly show the dropdown when the parent TH container is hovered */
.filter-dropdown-container:hover .filter-dropdown {
    display: block;
}

/* Clear filter button style - styled as a Bootstrap dropdown-item */
.clear-filter-btn {
    cursor: pointer;
    font-weight: 600;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: var(--bs-danger); /* Bootstrap red */
    border-bottom: 1px solid var(--bs-border-color-light);
}

.clear-filter-btn:hover {
    background-color: var(--bs-danger-bg-subtle);
}

/* Style for the active filter indicator */
.active-filter-indicator {
    color: var(--bs-primary); /* Bootstrap blue */
    font-size: 1rem;
    margin-left: 4px;
}

/* Ensure table cells don't wrap too much for better appearance */
/* #userTable td {
    white-space: nowrap;
} */


