.navbar-link {
    color: #333;
    transition: all 0.3s ease;
    font-weight: bold;
}

.navbar-link:hover {
    color: #FFBE98;
    opacity: 0.5;
}

.svg-icon {
    height: 1em;
    width: 1em;
    margin-right: 0.375rem; /* 6px */
}

.custom-color {
    color: #4e4e4e;
}

.user-comment {
    background: rgba(255, 190, 153, 0.5);
}

svg {
    color: #F29D75;
}

.pet-svg {
    background: transparent;
    color: rgba(255, 255, 255, 0);
}

.btn-primary {
    background-color: #FFBE98;
}

.btn-primary:hover {
    background-color: #FFBE98;
    opacity: 0.5;
}

.btn-second {
    color: #FFBE98;
    font-size: large;
    background-color: rgba(52, 113, 117, 0.1);
}

.btn-second:hover {
    color: #FFBE98;
    opacity: 0.5;
}

#cardContainer {
    display: flex;
    overflow: hidden;
}

#mobile-menu {
    background: white;
    backdrop-filter: blur(2px);
}

#close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

#globe-icon {
    position: absolute;
    top: 10px;
    right: 60px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

#mobile-menu ul {
    width: 100%;
    text-align: center;
}

#mobile-menu ul li {
    width: 100%;
    padding: 20px 0; /* Menü öğeleri için boşluk */
    border-bottom: 1px solid #ddd;
}

#mobile-menu ul li a {
    display: block;
    width: 100%;
}

.carousel-item {
    flex: 0 0 95%;
}

.carousel-indicators div {
    width: 10px;
    height: 10px;
    background-color: gray;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-indicators div.active {
    background-color: black;
}

/*Yükleme Ekranı*/

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

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin 1s ease infinite;
}

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

.prc-tbl {
    background-color: #F6F7FA;
    width: 500px;
}

/* Select kutusunun sağındaki oku gizlemek için */
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

/* Menü başlangıçta gizli */
.menu {
    max-height: 0; /* Menüyü başlangıçta gizle */
    transition: max-height 0.3s ease-out; /* Yumuşak geçiş efekti */
}

.menu.active {
    max-height: 700px; /* Aktif menüyü göster */
}

.select-wrapper {
    position: relative;
    width: 200px;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 12px 45px 12px 15px;
    font-size: 16px;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-wrapper:hover .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select {
    padding-right: 30px;
}

.custom-select option {
    padding: 12px 15px !important;
    background-color: #ffffff;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.custom-select option:hover,
.custom-select option:focus {
    background-color: #f7fafc;
    color: #2d3748;
}

.custom-select option:checked {
    background-color: #ebf8ff;
    color: #2b6cb0;
    font-weight: bold;
}

.custom-select::-webkit-scrollbar {
    width: 8px;
}

.custom-select::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.custom-select::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.custom-select::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.custom-select {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f1f1f1;
}

.custom-select::-ms-expand {
    display: none;
}

.custom-select::-ms-value {
    background-color: transparent;
    color: #4a5568;
}

#providers {
    padding: 10px 0 150px 0;
}

.menu {
    display: none;
    padding-bottom: 20px;
}

.active {
    display: block;
}

.menu::-webkit-scrollbar {
    display: none;
}
.active::-webkit-scrollbar {
    display: none;
}

.menu .active {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.snap-x {
    scroll-snap-type: x mandatory;
}

.snap-mandatory > * {
    scroll-snap-align: start;
}
.text-uppercase{
    text-transform: uppercase;
}
