﻿/* wwwroot/css/theme.css */
body {
    padding-top: 70px;
}
.theme-color {
    color: #090660 !important;
}

.theme-bg {
    background-color: #090660 !important;
}

.btn-theme {
    background-color: #090660 !important;
    color: #fff !important;
    border: none;
}

.btn-theme:hover {
        background-color: #06044d !important;
    }
.btn-outline-theme {
    background-color: transparent !important;
    color: #090660 !important;
    border: 1px solid #090660 !important;
}

.btn-outline-theme:hover {
        background-color: #090660 !important;
        color: #fff !important;
    }

.border-theme {
    border-color: #090660 !important;
}

.footer-link {
    color: #ddd;
    text-decoration: none;
}

.footer-link:hover {
        color: #ffffff;
        text-decoration: underline;
    }
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
        color: #ffc107; /* optional: gold/yellow hover color */
    }
.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #f1f3ff; 
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slow-carousel .carousel-item {
    transition: transform 1.5s ease-in-out; 
}

.rtl-carousel .carousel-inner {
    direction: rtl;
}

.rtl-carousel .carousel-control-prev {
    right: auto;
    left: 0;
}

.rtl-carousel .carousel-control-next {
    left: auto;
    right: 0;
}

.offcanvas-end {
    width: 400px; 
}
.text-justify {
    text-align: justify;
}

/* accordion */
.accordion-button::after {
    display: none !important;
}
.accordion-button {
    position: relative;
}
    .accordion-button::before {
        content: "+";
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #ffffff;
        font-size: 1.3rem;
        font-weight: bold;
    }

.accordion-button:not(.collapsed)::before {
    content: "−";
}

.logo-img {
    height: 50px;
    width: 120px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-img {
        height: 50px;
        width: 150px;
    }
}

@media (max-width: 767.98px) {
    .logo-img {
        height: 30px;
        width: 100px;
    }
}

.swal2-container {
    z-index: 20000 !important; 
}

.suggestions-dropdown {
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    background: white;
    width: 100%;
    z-index: 999;
}

.suggestion-item {
    padding: 5px 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

