*,
*::after,
*::before {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
* {
    font-size: 16px;
    /*
    --primaryTextColor: rgb(0, 0, 0);
    --secondaryTextColor: rgb(255, 200, 20);
    --primaryBackgroundColor: rgb(150, 150, 150);
    --secondaryBackgroundColor: rgb(50, 150, 175);
    --navBackColor: rgb(32, 32, 32);
    --navTextColor: rgb(224, 224, 224);
    --footerBackColor: rgb(32, 32, 32);
    --footerTextColor: rgb(224, 224, 224);
    --bodyBackColor: rgb(196, 196, 196);*/
}
body {
    background-color: var(--bodyBackColor);
    overflow-x: hidden;
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    width: 0.7rem;
    visibility: hidden;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primaryTextColor);
    border-right: 1px solid var(--primaryBackgroundColor);
}

body::-webkit-scrollbar:hover {
    visibility: visible;

    width: 1rem;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondaryTextColor);
    border-right: 1px solid var(--primaryBackgroundColor);
}
.siteLoaderDiv {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    /* Sayfa üzerinde bir opaklık efekti için */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.siteLoader {
    margin-top: 2rem;
    border: 8px solid #ffffff00;
    /* Loader dairesinin dış kenarı */
    border-top: 8px solid #e0a118;
    border-bottom: 8px solid #e0a118;
    /* Loader dairesinin üst kenarı */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
    /* Dönme animasyonu */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
