﻿.fund-analysis-container {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
}

#chartsContainer {
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: width 0.3s ease;
    width: calc(100% - 316px); /* 300px kontrol genişliği + 16px gap */
}

    #chartsContainer.expanded {
        width: 100%;
    }
/* Grafik ve kontrol alanı için container */
.charts-and-controls {
    display: flex;
    width: 100%;
    gap: 8px;
    position: relative;
}

/* Chart Section Styles */
.chart-section {
    border-radius: 12px;
}

.chart-container {
    position: relative;
    min-height: 350px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.chart-actions {
    display: flex;
    gap: 16px;
}
/* Export button pozisyonu için özel stil */
.highcharts-exporting-group {
    transform: translate(0, -35px) !important; /* Butonu 30px yukarı taşı */
}

/* Export menüsünün pozisyonunu da ayarla */
.highcharts-contextmenu {
    transform: translate(0, -30px);
}

/* Export butonunun hover efektini düzelt */
.highcharts-button:hover .highcharts-button-box {
    fill: #f3f4f6;
    stroke: #e5e7eb;
}

.chart-type-selector select {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 32px;
    background: white;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
    min-width: 120px;
    height: 42px;
}



/* Period Returns */
.period-returns {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 sütun oluşturur */
    width: 100%;
    gap: 6px;
    overflow-x: auto;
    border-top: none;
    padding: 0;
}

.period-item {
    padding: 7px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 0;
    white-space: nowrap;
}

    .period-item:hover {
        background: #f9fafb;
        border-color: #11BF2B;
    }

    .period-item.active {
        background: #dcfce7;
        border-color: #11BF2B;
        color: #047857;
    }

.period-label {
    font-weight: 400;
    font-size: 12px;
    padding: 0px !important;
}
/* Seçim alanı için stil */
.highcharts-selection-marker {
    stroke: #11BF2B !important;
    stroke-width: 1px !important;
}

.selection-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f3f4f6;
    border-radius: 6px;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 12px;
}

    .selection-hint svg {
        color: #11BF2B;
    }
/* Responsive Styles */
@media (max-width: 768px) {
    .chart-section {
        margin-bottom: 24px;
        padding: 16px;
    }

    .fund-analysis-container {
        padding: 16px;
    }

    .chart-header {
        flex-direction: column;
        gap: 16px;
    }

    .chart-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .chart-type-selector,
    .export-selector {
        flex: 1;
    }

    .period-returns {
        gap: 8px;
    }

    .period-item {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .metric-grid {
        grid-template-columns: 1fr;
    }

    .chart-actions {
        flex-direction: column;
    }

    .chart-type-selector select,
    .export-selector select {
        width: 100%;
    }
}

/* Date Input Styles */
.custom-date-range {
    margin-bottom: 24px;
}

.date-input-wrapper {
    position: relative;
}

    .date-input-wrapper input {
        width: 100%;
        padding: 12px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 14px;
        color: #111827;
        background: #f9fafb;
        cursor: pointer;
    }

        .date-input-wrapper input:focus {
            outline: none;
            border-color: #11BF2B;
            box-shadow: 0 0 0 3px rgba(17, 191, 43, 0.1);
        }

.fund-analysis-container.loading {
    position: relative;
    min-height: 200px;
}

    .fund-analysis-container.loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .fund-analysis-container.loading::before {
        content: 'Yükleniyor...';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 11;
        color: #11BF2B;
        font-weight: 500;
    }

.highcharts-crosshair {
    stroke: #11BF2B;
    stroke-width: 1px;
}

.highcharts-tooltip {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.highcharts-tooltip-box {
    fill: white;
    stroke: #e5e7eb;
    stroke-width: 2px;
    border-radius: 8px;
}

.highcharts-plot-band {
    transition: all 0.2s ease;
}

    .highcharts-plot-band:hover {
        fill-opacity: 0.2;
    }

/* Seçim çerçevesi stilleri */
.highcharts-selection-marker {
    fill: rgba(17, 191, 43, 0.1);
    stroke: rgba(17, 191, 43, 0.5);
    stroke-width: 1px;
}

.chart-section.exporting::after {
    content: 'Dışa aktarılıyor...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 100;
}

/* Tarih Seçici Stili */
.date-range-picker {
    position: relative;
}

.date-range-input {
    width: 100%;
    max-width: 300px;
    padding: 8px 5px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 12px;
    color: #111827;
    cursor: pointer;
    background: white;
    transition: all 0.2s ease;
}

    .date-range-input:hover {
        border-color: #11BF2B;
    }

    .date-range-input:focus {
        outline: none;
        border-color: #11BF2B;
        box-shadow: 0 0 0 3px rgba(17, 191, 43, 0.1);
    }

/* Flatpickr Özelleştirmeleri */
.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #11BF2B !important;
    border-color: #11BF2B !important;
}

.flatpickr-day.inRange {
    background: #dcfce7 !important;
    border-color: #e5e7eb !important;
}

.highcharts-data-label {
    font-size: 10px !important;
}

    .highcharts-data-label text {
        fill: #999 !important;
    }

/* Eksik veri noktaları için stil */
.highcharts-point.highcharts-null-point {
    stroke-dasharray: 2, 2;
    stroke: #999;
}

.chart-section.loading {
    position: relative;
    min-height: 400px;
}

    .chart-section.loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .chart-section.loading::before {
        content: 'Yükleniyor...';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        color: #11BF2B;
        font-weight: 500;
    }

.custom-date-range-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    padding: 0px 16px;
}

.metric-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

    .metric-modal.active {
        display: flex;
    }

.metric-modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 16px 24px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-direction: column;
}

/* Accordion Styles */
.metrics-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-group {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.metric-group-header {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f9fafb;
    font-weight: 500;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.metric-group.active .arrow-icon {
    transform: rotate(180deg);
}

.metric-group-content {
    padding: 16px;
    display: none;
    border-top: 1px solid #e5e7eb;
}

.metric-group.active .metric-group-content {
    display: block;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    user-select: none; /* Metin seçimini engelle */
}

    .metric-item:hover {
        background: #f3f4f6;
    }

.metric-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.metric-item.selected {
    background: #ecfdf5;
    border: 1px solid #11BF2B;
}

.custom-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.metric-item.selected .custom-checkbox {
    background: #11BF2B;
    border-color: #11BF2B;
}

    .metric-item.selected .custom-checkbox:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 2px;
        width: 5px;
        height: 9px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }


.metric-info {
    flex: 1;
}

.metric-name {
    font-weight: 500;
    color: #111827;
}

.metric-description {
    font-size: 13px;
    color: #6b7280;
}

/* Edit Charts Button */

.btn-apply {
    padding: 8px 24px;
    background: #11BF2B;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

    .btn-apply:hover {
        background: #0ea827;
    }

/* Uyarı mesajı için stiller */
.no-metrics-warning {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    text-align: center;
}

    .no-metrics-warning svg {
        color: #11BF2B;
    }

    .no-metrics-warning p {
        font-size: 14px;
        margin: 0;
    }

/* Modal kapatma animasyonu */
.metric-modal {
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

    .metric-modal.active {
        opacity: 1;
        pointer-events: auto;
    }

.metric-modal-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.metric-modal.active .metric-modal-content {
    transform: translateY(0);
}

/* Dropdown Menu Styles */
.comparison-dropdown {
    position: relative;
    display: inline-block;
}

.comparison-dropdown-button {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 32px;
    background: white;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 42px;
    gap: 8px;
}

.comparison-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 250px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 4px;
    max-height: 400px;
    overflow: auto; /* scroll çalışsın */
    -ms-overflow-style: none; /* IE ve eski Edge için */
    scrollbar-width: none; /* Firefox için */
}

    .comparison-dropdown-content::-webkit-scrollbar {
        display: none; /* Chrome, Safari, yeni Edge için */
    }

.comparison-dropdown.active .comparison-dropdown-content {
    display: block;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin:3px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    border:solid 1px;
    border-radius:5px;
    border-color:#dbf6cd;
}

    .comparison-item:hover {
        background: #f3f4f6;
    }

    .comparison-item.selected {
        background: #ecfdf5;
        border: 1px solid #11BF2B;
        margin: 4px;
        border-radius: 6px;
    }

        .comparison-item.selected .comparison-name {
            color: #11BF2B;
            font-weight: 600;
        }

        .comparison-item.selected .comparison-description {
            color: #047857;
        }

.comparison-info {
    flex: 1;
}

.comparison-name {
    font-weight: 500;
    color: #111827;
    font-size:13px;
}

.comparison-description {
    font-size: 11px;
    color: #6b7280;
}

.search-box {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.search-input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    position: sticky;
}

    .search-input:focus {
        outline: none;
        border-color: #11BF2B;
        box-shadow: 0 0 0 3px rgba(17, 191, 43, 0.1);
    }

#editChartsBtn {
    width: 100%;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
}

.chart-controls-wrapper {
    position: sticky;
    top: 20px;
    height: fit-content;
    transition: width 0.3s ease; /* sadece genişliği animasyonla */
    background: white;
    width: 180px;
    flex-shrink: 0;
    align-self: flex-start;
    /* butonu konumlamak için referans */
    position: sticky;
}

    /* Kapalıyken sadece daralt */
    .chart-controls-wrapper.collapsed {
        width: 16px; /* ince şerit kalsın */
    }

/* İçerik kutusu (kapanınca görünmesin) */
.chart-controls {
    width: 100%;
    transition: opacity 0.3s ease;
    opacity: 1;
    overflow: hidden;
}

    .chart-controls.collapsed {
        opacity: 0;
        pointer-events: none; /* içerik tıklanmasın */
    }

/* Toggle buton: wrapper'a sabit */
.chart-controls-toggle {
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10; /* içerikten hep üstte */
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    margin: 7px 7px 7px 20px;
}

    .chart-controls-toggle .show {
        right: -12px; /* dış kenara taşır, ince şerit dışına çıkar */
        top: 8px;
    }

    .chart-controls-toggle .hide {
        right: -12px; /* dış kenara taşır, ince şerit dışına çıkar */
        top: 8px;
    }
/* İkonu kapalıyken çevir */
.chart-controls-wrapper.collapsed .toggle-icon {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

/* (İsteğe bağlı) hover ufak vurgu */
.chart-controls-toggle:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.chart-controls-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Tam olarak 3 kolon */
    gap: 10px;
}

.chart-title {
    font-family: Space Grotesk;
    margin-bottom: 4px;
    font-size:20px;
    font-weight:500;
}
/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .chart-controls {
        width: 100%;
        max-width: none;
    }

    .chart-controls-wrapper {
        position: relative;
        top: 0;
    }

    .chart-controls-toggle {
        display: none;
    }
}

.selection-stats-tooltip {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 16px;
    border: 1px solid #e5e7eb;
    animation: fadeIn 0.2s ease;
}

    /* Çoklu seri için genişlik */
    .selection-stats-tooltip.multi-series {
        min-width: 680px;
        max-width: 900px;
    }

    /* Tek seri için genişlik */
    .selection-stats-tooltip.single-series {
        width: 220px;
    }


/* Stats grid için stil */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Tam olarak 3 kolon */
    gap: 12px;
    margin-top: 8px;
}

/* Seri kartları için stiller */
.series-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    min-width: 200px; /* Minimum kart genişliği */
}

    .series-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

.series-name {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.series-details {
    font-size: 14px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0;
}

/* Tooltip içeriği için scroll stilleri */
.tooltip-content {
    max-height: 400px; /* Maksimum yükseklik */
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

    .tooltip-content::-webkit-scrollbar {
        width: 6px;
    }

    .tooltip-content::-webkit-scrollbar-track {
        background: transparent;
    }

    .tooltip-content::-webkit-scrollbar-thumb {
        background-color: #ddd;
        border-radius: 3px;
    }

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .selection-stats-tooltip {
        min-width: 460px;
        max-width: 600px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet için 2 kolon */
    }
}

@media (max-width: 576px) {
    .selection-stats-tooltip {
        min-width: 300px;
        max-width: 400px;
    }

    .stats-grid {
        grid-template-columns: 1fr; /* Mobil için tek kolon */
    }
}

.tooltip-header {
    font-weight: 500;
    color: #111827;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16px;
}


.tooltip-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

    .stat-row span:first-child {
        color: #6b7280;
    }

    .stat-row span:last-child {
        font-weight: 500;
        color: #111827;
    }

    .stat-row .positive {
        color: #11BF2B !important;
    }

    .stat-row .negative {
        color: #ef4444 !important;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-date-range {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #6b7280;
    margin-top: 4px;
    padding-top: 6px;
    border-top: 1px dashed #e5e7eb;
}

    .selected-date-range svg {
        color: #11BF2B;
        flex-shrink: 0;
    }

.stats-header {
    margin-bottom: 16px;
}

.stats-title {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.tooltip-date-range {
    font-size: 16px;
    color: #6b7280;
    padding: 4px 0;
    margin-bottom: 8px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

/* Tek seri için tooltip stilleri */
.single-series-stats {
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    width: 180px; /* Daha kompakt genişlik */
}

.single-series-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
}

.single-series-stats .stat-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 11px;
    line-height: 1.2;
}

    .single-series-stats .stat-row span:first-child {
        color: #6b7280;
    }

    .single-series-stats .stat-row span:last-child {
        font-weight: 500;
        color: #111827;
    }

/* Tek seri için daha kompakt tooltip header */
.selection-stats-tooltip .tooltip-header {
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.selection-stats-tooltip .tooltip-date-range {
    font-size: 14px;
    color: #6b7280;
    margin: 4px 0;
    padding: 0;
}

.asset-allocation-section {
    margin-top: 24px;
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.asset-allocation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

    .asset-allocation-header h3 {
        margin: 0;
        font-size: 18px;
        color: #111827;
    }

.asset-allocation-chart {
    min-height: 400px;
    position: relative;
}

.asset-allocation-actions {
    display: flex;
    gap: 12px;
}

.fund-title-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
    gap: 12px;
}

    .fund-title-link:hover {
        opacity: 0.8;
        text-decoration: none;
    }


/* Reset button styles */
.reset-comparison-btn {
    padding: 8px 12px;
    border: 1px solid #ef4444;
    border-radius: 6px;
    background: white;
    color: #ef4444;
    font-size: 14px;
    cursor: pointer;
    display: none; /* Başlangıçta gizli */
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

    .reset-comparison-btn:hover {
        background: #fef2f2;
    }

    .reset-comparison-btn.visible {
        display: flex;
    }

    .reset-comparison-btn svg {
        width: 16px;
        height: 16px;
    }

.request-queue-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 12px;
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

    .request-queue-indicator.active {
        display: flex;
    }

    .request-queue-indicator .spinner {
        width: 16px;
        height: 16px;
        border: 2px solid #e5e7eb;
        border-radius: 50%;
        border-top-color: #11BF2B;
        animation: spin 0.8s linear infinite;
    }

.asset-allocation-loading {
    position: relative;
    min-height: 400px;
}

    .asset-allocation-loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .asset-allocation-loading::before {
        content: 'Yükleniyor...';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 11;
        color: #11BF2B;
        font-weight: 500;
    }


.reset-view-btn {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 8px 6px;
    border-radius: 8px;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}
