.headerBgColor{
    background-color: #494c4f !important;
}

/* Loading Screen */
/* Yükleme ekranı ve dönen bar stili */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#spinner {
    position: relative;
    width: 200px;
    height: 200px;
}

#spinner img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#spinner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: #121432;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
