﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    user-select: none;
}

body::-webkit-scrollbar {
    width: 10px;
    background: #343a40;
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#main-footer img {
    width: 150px;
}

#main-footer i {
    font-size: 36px;
    margin: 0px 10px;
}

#main-footer .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
}

#main-footer .footer-container input[type="email"] {
    width: 90%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

#main-footer .footer-container input[type="submit"] {
    width: 90%;
}

#main-footer .footer-container ul li {
    padding: 0.5rem 0;
    border-bottom: 1px dotted #333;
    width: 90%;
}

#main-footer .footer-container ul li a:hover {
    color: var(--primary-color);
}

#main-footer .footer-container > div:last-child {
    padding: 0.5rem;
    text-align: center;
    grid-column: 1 / span 4;
}

#mobileMenu .text-end {
    display: none;
}

.dark-mode {
    color: #ffffff;
    background-color: #101115;
    transition: all 0.5s;
}

.dark-mode .text-color {
    color: #ffffff;
}

.light-mode .text-color {
    color: #101115;
}

.dark-mode .currencyModal {
    color: #ffffff;
    background-color: #101115;
    transition: all 0.5s;
}

.dark-mode .navigation-btn {
    background-color: #101115;
    border: 0.5px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
}

.dark-mode .navigation-btn:hover {
    color: #101115;
    border: 0.5px solid #101115;
    border-radius: 8px;
    background-color: #ffffff;
}

.dark-mode .table {
    color: #ffffff;
    background-color: #101115;
}

.dark-mode .card {
    color: #ffffff;
    border: 0.5px solid #ffffff;
    background-color: #101115;
}

.dark-mode #main-footer a {
    color: #ffffff;
    text-decoration: none;
}

.light-mode {
    color: #101115;
    background-color: #ffffff;
    transition: all 0.5s;
}

.light-mode .currencyModal {
    color: #101115;
    background-color: #ffffff;
    transition: all 0.5s;
}

.light-mode .navigation-btn {
    color: #101115;
    border: 0.5px solid #101115;
    border-radius: 8px;
    background-color: #ffffff;
}

.light-mode .navigation-btn:hover {
    color: #ffffff;
    border: 0.5px solid #ffffff;
    border-radius: 8px;
    background-color: #101115;
}

.light-mode .table {
    color: #101115;
    background-color: #ffffff;
}

.ligth-mode .card {
    color: #ffffff;
    background-color: #101115;
}

.light-mode #main-footer a {
    color: #101115;
    text-decoration: none;
}



.loading {
    display: none;
    content: "ASDd";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: rgba(186, 186, 186, 0.43); /* Arka planı flu yapmak için rgba renk kullanabilirsiniz */
    border: 1px solid #3c3c3c;
    border-radius: 50%;
    text-align: center;
    line-height: 110px;
    color: black;
    font-size: 15px;
    text-transform: uppercase;
    z-index: 999;
    font-weight: bold;
    backdrop-filter: blur(100px); /* Arka planı flu yapar */
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border: 3px solid transparent;
    border-top-color: darkblue;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(1px);
    z-index: 998;
    pointer-events: none;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dark-mode .fixed-bottom-right {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.light-mode .fixed-bottom-right {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}