.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    margin-top: -1px; /* Adjusts the space between navbar and dropdown menu */
}
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    padding-right: 30px;
}


/* Custom CSS for navbar toggler */
.navbar-toggler {
    margin-left: 10px; /* Add space to the left */
    margin-right: 10px; /* Add space to the right */
}

.navbar-toggler-icon {
    padding-left: 10px; /* Add space to the left */
    padding-right: 10px; /* Add space to the right */
}

/* Hide navigation links and show toggler for screens 1080px width AND 690px height or less */
@media (max-width: 1080px) and (max-height: 690px) {
    .navbar-collapse {
        display: none; /* Hide the navigation links by default */
    }

    .navbar-toggler {
        display: block; /* Show the toggler */
    }

    /* Show navigation links when toggler is clicked (requires JavaScript) */
    .navbar-collapse.show {
        display: flex; /* Or whatever display value you use for the nav links */
    }
}
/* Base button styles for .btn-light only */
.btn-light {
    background-color: #0769a5ce !important; /* Your desired background color */
    color: white !important; /* Your desired text color */
    border-radius: 0.375rem !important;
    padding: 0.5rem 1rem !important; /* Adjusted for btn-sm */
    font-size: 0.875rem !important; /* Adjusted for btn-sm */
    border: none !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    text-align: center !important;
    width: auto !important; /* Adjust width as needed */
    box-shadow: 0 4px 6px var(--shadow-color) !important;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out !important;
}

/* Remove margin from the last button to avoid extra space */
.btn-light:last-child {
    margin-right: 0 !important;
}

/* Hover and active states for .btn-light only */
.btn-light:hover {
    background-color: #065a8cce !important; /* Darker shade for hover */
    transform: translateY(-1px) !important;
}

.btn-light:active {
    background-color: #054a73ce !important; /* Even darker shade for active state */
    transform: translateY(0) !important;
}

.list-group-item {
    color: #333 !important; /* Change text color to #333 */
}

/* Ensure the active state also has the correct text color */
.list-group-item.active {
    color: #333 !important; /* Change text color to #333 for active state */
}

/*Toogle Button*/
.float-right .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem; /* Adjust padding as needed */
    font-size: 0.875rem; /* Consistent font size */
    line-height: 1.5; /* Consistent line height */
    min-width: 2.5rem; /* Add a minimum width for uniform size */
    color: #fff;
}

.filter-toggle {
    width: 2.5rem; /* Set a fixed width for the toggle button */
    padding: 0.375rem; /* Adjust padding to center the icon */
    color: #fff;
}
/* Sign Up Button */
.btn-register {
    background-color: #bf360c;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none; /* Prevent underline on hover */
}

.btn-register:hover {
    background-color: #a32c08; /* Slightly darker shade for hover */
    color: white; /* Ensure text remains visible */
    text-decoration: none; /* Prevent underline on hover */
}

}
/* Sign Up Button */
.btn-block {
    background-color: #198754;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none; /* Prevent underline on hover */
}

.btn-block:hover {
    background-color: #29a169; /* Slightly darker shade for hover */
    color: white; /* Ensure text remains visible */
    text-decoration: none; /* Prevent underline on hover */
}


/* Base button styles for .btn-danger */
.btn-danger {
    background-color: #dc3545ce !important; /* Red background color for danger */
    color: white !important; /* White text color */
    border-radius: 0.375rem !important;
    padding: 0.5rem 1rem !important; /* Adjusted for btn-sm */
    font-size: 0.875rem !important; /* Adjusted for btn-sm */
    border: none !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    text-align: center !important;
    width: auto !important; /* Adjust width as needed */
    box-shadow: 0 4px 6px var(--shadow-color) !important;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out !important;
}

/* Remove margin from the last button to avoid extra space */
.btn-danger:last-child {
    margin-right: 0 !important;
}

/* Hover and active states for .btn-danger */
.btn-danger:hover {
    background-color: #e50b21ce !important; /* Darker shade of red for hover */
    transform: translateY(-1px) !important;
}

.btn-danger:active {
    background-color: #bd2130ce !important; /* Even darker shade of red for active state */
    transform: translateY(0) !important;
}

/*Space between buttons*/
.btn {
    margin-right: 0.5rem; /* Add space to the right of each button */
}

.btn:last-child {
    margin-right: 0; /* Remove margin from the last button */
}

/*Tab Background*/
/* Increase specificity to override conflicting styles */
.nav-link.active {
    background-color: #0769a5ce !important; /* Force background color */
    color: white !important; /* Force text color */
    border-radius: 0.375rem !important;
    padding: 0.5rem 1rem !important;
    transition: background-color 0.3s ease-in-out !important;
}

/* Hover state */
.nav-link.active:hover {
    background-color: #065a8cce !important; /* Darker shade on hover */
}


/* Base button styles for .btn-primary */
.btn-primary {
    background-color: #0769a5ce !important; /* Blue background color for primary */
    color: #fff !important; /* White text color */
    padding: 0.75rem 1.5rem !important; /* Larger padding for a bigger button */
    border: none !important;
    border-radius: 0.375rem !important;
    font-weight: 600 !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
    display: inline-block !important;
    font-size: 1rem !important; /* Larger font size */
    cursor: pointer !important;
    text-align: center !important;
    width: auto !important; /* Adjust width as needed */
    box-shadow: 0 4px 6px var(--shadow-color) !important;
}

/* Remove margin from the last button to avoid extra space */
.btn-primary:last-child {
    margin-right: 0 !important;
}

/* Hover and active states for .btn-primary */
.btn-primary:hover {
    background-color: #05507ece !important; /* Darker shade of blue for hover */
    transform: translateY(-1px) !important;
}

.btn-primary:active {
    background-color: #03395ece !important; /* Even darker shade of blue for active state */
    transform: translateY(0) !important;
}



/* Whatsapp Icon */
.float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 16px;
    left: 32px;
    background: #ffffff;
    color: #25d366;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 100;
    border: 1px solid rgba(37, 211, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.float:hover {
    background: #25d366;
    color: #ffffff;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.my-float {
    margin: 0;
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}