﻿/* Genel Ayarlar */
.nav-container {
    padding: 16px;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    border-bottom: 1px solid rgba(14, 15, 12, 0.12);
}

.username {
    font-size: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.settings-title {
    font-size: 22px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: #000;
    margin: 4px 0 24px 0;
}

.nav-tabs {
    display: flex;
    gap: 4px;
    padding-bottom: 8px;
}

.nav-tab {
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-family: 'Nacelle', sans-serif;
    font-weight: 400;
    line-height: 22px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.4);
    cursor: pointer;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    transition: all 0.2s ease;
    height: 32px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.nav-tab.active {
    border: 1px solid rgba(0, 0, 0, 1);
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    font-family: Nacelle;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1.25%;
    text-decoration: none;
}

.nav-tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.nav-tab,
.nav-tab:hover,
.nav-tab:focus,
.nav-tab:active,
.nav-tab.active,
.nav-tab.active:hover {
    text-decoration: none !important;
}

.main-container {
    display: flex;
    gap: 16px;
    padding: 22px 42px;
    font-family: 'Nacelle', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.side-menu {
    width: 200px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item-page {
    width: 210px;
    height: 42px;
    padding: 12px 16px;
    margin-bottom: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-style: Medium;
    color: rgba(0, 0, 0, 1);
    transition: all 0.2s ease;
    border-radius: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
}

.menu-item-page.active {
    font-weight: 500;
    background: rgba(231, 249, 234, 1);
    color: rgba(17, 191, 43, 1);
    border-radius: 32px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    pointer-events: all;
    display: none; /* Varsayılan olarak gizli */
}

.loader {
    position: fixed;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
    z-index: 9999;
    display: none; /* Varsayılan olarak gizli */
}

.inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

    .inner.one {
        left: 0%;
        top: 0%;
        animation: rotate-one 1s linear infinite;
        border-bottom: 3px solid #EFEFFA;
    }

    .inner.two {
        right: 0%;
        top: 0%;
        animation: rotate-two 1s linear infinite;
        border-right: 3px solid #EFEFFA;
    }

    .inner.three {
        right: 0%;
        bottom: 0%;
        animation: rotate-three 1s linear infinite;
        border-top: 3px solid #EFEFFA;
    }

@keyframes rotate-one {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate-two {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes rotate-three {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .side-menu {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 8px;
        gap: 8px;
    }
    
    .menu-item-page {
        white-space: nowrap;
        flex-shrink: 0;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .nav-tabs-menu {
        gap: 8px;
    }
    
    .nav-tab {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .main-container {
        padding: 12px 16px;
    }
}
