/* Custom CSS if needed */
.nav-tabs .nav-link {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

.nav-tabs .nav-link.active {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}

.nav-tabs .nav-link:hover {
    background-color: #f0f0f0;
    color: #007bff;
}

.bg-gradient-primary,
.bg-gradient-custom,
.bg-gradient-footer {
    background: linear-gradient(45deg, #007bff, #00d2ff);
}

.dropdown-menu {
    border-radius: 0.5rem;
    background-color: #343a40;
}

.dropdown-item {
    color: #fff;
}

.dropdown-item:hover {
    background-color: #495057;
}

.btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #000000;
}

.navbar {
    border-bottom: 2px solid #ffffff;
}

.navbar-light .navbar-nav .nav-link {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

/*.nav-link:hover {*/
/*    color: #f8f9fa;*/
/*}*/

.navbar-toggler,
#return-to-top {
    border-color: #ffffff;
    background-color: #007bff;
    color: #ffffff;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3csvg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"%3e%3cpath stroke="%23ffffff" stroke-width="2" d="M5 7h20M5 15h20M5 23h20" /%3e%3c/svg%3e');
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#return-to-top:hover {
    background-color: #0056b3;
}

.search-input {
    border-radius: 20px;
    padding: 5px 15px;
    border: 1px solid #ffffff;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #00d2ff;
    box-shadow: 0 0 0 0.2rem rgba(0, 210, 255, 0.5);
}

.search-btn {
    border-radius: 20px;
    background: #ffffff;
    color: #007bff;
    transition: background 0.3s ease, color 0.3s ease;
}

.search-btn:hover {
    background: #007bff;
    color: #ffffff;
}

.vertical-tabs {
    display: flex;
    flex-direction: row;
}

.nav-tabs {
    border-bottom: 2px solid #ddd;
    display: flex;
}

.nav-tabs .nav-item {
    margin-right: 1rem;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    margin-bottom: -1px;
}

.nav-tabs .nav-link.active {
    border-color: #ddd #ddd transparent;
    background-color: #fff;
    z-index: 1;
}

.tab-content {
    border-radius: 0.5rem;
    padding: 1rem;
}

.tab-pane h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.filter-section {
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100vh;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
    z-index: 1050;
}

.filter-section.show {
    transform: translateX(0);
}

.filter-content {
    padding: 20px;
    height: 100%;
    overflow: auto;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    width: 50px;
    height: 50px;
}

.close-btn:hover {
    background: #f8f9fa;
    color: #007bff;
}

#userDropdown, #authDropdown {
    margin-left: 10px !important;
}

#languageDropdown {
    margin-right: 10px !important;
}

.header-container1 select, .header-container1 button {
    width: 200px !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-tabs .nav-item {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .filter-section {
        width: 100%;
        max-width: none;
    }

    .slider {
        height: 200px !important;
    }

    .header-container1 select, .header-container1 button {
        width: 140px !important;
    }
}

#toast-container > .toast {
    background-image: none !important;
}

#toast-container > .toast:before {
    position: relative;
    font-size: 24px;
    line-height: 18px;
    float: left;
    margin-left: -1em;
    color: #FFF;
    padding-right: 0.5em;
    margin-right: 0.5em;

}

#toast-container .toast {
    background-color: #1b75bc !important;
}

#toast-container > .fa-check, .toast {
    background-color: #328b17 !important;
}

#toast-container > .fa-trash, .toast {
    background-color: #590619 !important;
}


.toast-message {
    font-family: Calibri;
}


.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer h5 {
    margin-bottom: 15px;
    font-weight: bold;
}

.footer p {
    margin: 0;
    line-height: 1.5;
}

.scrollable-section {
    height: 200px;
    overflow-y: auto; /* Adds a vertical scrollbar if content exceeds height */
    padding-right: 15px; /* Prevents content from being hidden under the scrollbar */
}

.scrollable-section::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

.scrollable-section::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
    border-radius: 10px;
}

.scrollable-section::-webkit-scrollbar-thumb {
    background: #00A7FF; /* Scrollbar color */
    border-radius: 10px;
}

.scrollable-section::-webkit-scrollbar-thumb:hover {
    background: #00A7FF; /* Darker scrollbar color on hover */
}

.scrollable-section h5 {
    margin-bottom: 15px;
    font-weight: bold;
}

.scrollable-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.scrollable-section ul {
    padding-left: 0;
}

.scrollable-section li {
    margin-bottom: 10px;
}

a:hover {
    text-decoration: none !important;
}

.nav-item.elan:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

option{
    text-align: left;
}


