﻿/* Sayfa başlık */
.nav-container {
    padding: 16px 16px 8px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.username {
    font-size: 20px;
    color: #333;
    margin-bottom: 4px;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.title {
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.currency-selector {
    display: inline-flex;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.currency-btn {
    padding: 8px 16px;
    background: white;
    cursor: pointer;
    border: none;
    position: relative;
    transition: all 0.2s;
}

.currency-btn:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: #e5e7eb;
}

.currency-btn:hover {
    background: #f9fafb;
}

.currency-btn.active {
    background: #f3f4f6;
    font-weight: 500;
}

.tab-navigation {
    display: flex;
    gap: 8px;
    padding: 0 24px;
    margin-bottom: 24px;
}
.nav-tab {
    padding: 6px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
}

    .nav-tab.active {
        color: #111827 !important;
        font-weight: 550;
        border: 1px solid black;
        background-color: #f9fafb;
    }

.nav-tab:hover:not(.active) {
    background-color: #f9fafb;
    color: #4b5563;
}
.content-container {
    display: flex;
    gap: 24px;
    padding: 0 24px;
    margin-bottom: 24px;
    height: calc(100% - 150px); /* Header ve diğer elemanlar için yaklaşık boşluk bırakıyoruz */
}

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 16px 24px;
    margin-bottom: 24px;
}

.summary-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

    .summary-card .label {
        color: #6b7280;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .summary-card .value {
        font-size: 24px;
        font-weight: 600;
        color: #111827;
    }
.risk-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .risk-container .value {
        font-size: 24px;
        font-weight: bold;
    }

.risk-bars {
    display: flex;
    gap: 2px;
    width: 100%;
}

.risk-bar {
    height: 8px;
    flex: 1;
    background-color: #E5E7EB;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.risk-bar.active-1,
.risk-bar.active-2 {
    background-color: #FDE047; /* açık sarı */
}

.risk-bar.active-3 {
    background-color: #FACC15; /* sarı */
}

.risk-bar.active-4,
.risk-bar.active-5 {
    background-color: #FB923C; /* turuncu */
}

.risk-bar.active-6,
.risk-bar.active-7 {
    background-color: #F97316; /* koyu turuncu */
}
hr {
    margin-bottom: 20px;
    color: #000;
    border-color: #0E0F0C1F;
    margin: 0 -100px;
}