﻿/* 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-family: Space Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 1);
}

.create-alert-btn {
    height: 44px;
    padding: 10px 20px;
    border-radius: 32px;
    border: 1px solid rgba(125, 131, 152, 0.3);
    background: var(--Secondary, rgba(17, 191, 43, 1));
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    box-shadow: 0px 3px 6px 0px rgba(18, 18, 18, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tabs-menu {
    display: flex;
    gap: 12px;
}

.nav-tab {
    height: 32px;
    padding: 5px 16px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    font-size: 14px;
    background: transparent;
    cursor: pointer;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .nav-tab.active {
        color: rgba(0, 0, 0, 1);
        font-weight: 500;
        border: 1px solid rgba(0, 0, 0, 1);
    }

/* Alarm bölümleri */
.alerts-section {
    padding: 16px 16px;
}

.section-title {
    margin-bottom: 24px;
}

    .section-title h2 {
        font-family: Space Grotesk;
        font-weight: 500;
        font-style: Medium;
        font-size: 20px;
        line-height: 150%;
        letter-spacing: -1%;
        color: rgba(0, 0, 0, 1);
        margin-bottom: 4px;
    }

    .section-title p {
        font-family: Nacelle;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0%;
        color: rgba(125, 131, 152, 1);
    }

/* Alarm kartları */
.fund-alerts-container,
.portfolio-alerts-container {
    min-height: 215px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

    /* Container içinde kartlar varsa grid yapısına geç */
    .fund-alerts-container:has(.alert-card),
    .portfolio-alerts-container:has(.alert-card) {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(261px, 1fr));
        gap: 20px;
    }

    /* Grid item wrapper'lar */
    .fund-alerts-container > div,
    .portfolio-alerts-container > div {
        min-width: 0;
        overflow: hidden;
    }

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 16px;
    width: 100%;
    max-width: 400px; /* Genişliği sınırla */
}

.empty-state .plus-icon {
    width: 68px;
    height: 68px;
}

.empty-state .cancel-icon {
    width: 68px;
    height: 68px;
}

.empty-state .empty-text {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    text-align: center;
}

.empty-state .create-now-btn {
    margin-top: -16px;
    padding: 8px 16px;
    background: none;
    border: none;
    color: #22C55E;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.empty-state .create-now-btn:hover {
    color: #16A34A;
    text-decoration: underline;
}

.alert-card-wrapper{
    position: relative;
}

.alert-card-wrapper .alert-action-button{
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    color: #666;
    transition: color 0.2s;
}

.alert-card-wrapper .alert-action-button.delete:hover{
    transform: scale(1.2);
    cursor: pointer;
    transition: transform 0.4s; 
}

.alert-card-wrapper .alert-action-button .menu-icon{
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.alert-card {
    background: white;
    border-radius: 4px;
    padding: 28px 16px 16px;
    border: 1px solid #e5e7eb;
    border-bottom: none !important;
    overflow: hidden;
    word-wrap: break-word;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    min-width: 0;
}

.alert-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #22C55E;
    flex-shrink: 0;
}

    .alert-icon img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

.portfolio-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-weight: 500;
    font-size: 18px;
    font-family: Space Grotesk, sans-serif;
}

.alert-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.alert-fund-code {
    font-family: Space Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 2px;
}

.alert-fund-name {
    font-family: Nacelle;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 0.54);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
    max-width: 100%;
    display: block;
}

    /* Tooltip için temel stil */
    .alert-fund-name[title] {
        position: relative;
    }

            .alert-fund-name[title]:hover::after {
        content: attr(title);
        position: absolute;
        bottom: 100%;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 1000;
    }

.fund-link,
.portfolio-link {
    color: rgba(0, 0, 0, 0.54);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fund-link:hover,
.portfolio-link:hover {
    color: #22C55E;
    text-decoration: underline;
}

.alert-money-type {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 16px;
    font-family: Space Grotesk;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 27.57px;
    letter-spacing: 0px;
    color: rgba(116, 116, 116, 1);
    border: 1.38px solid rgba(233, 234, 239, 1);
    margin: 12px 0;
}

.alert-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    border: 1px solid rgba(233, 234, 239, 1);
    background: rgba(252, 252, 252, 1);
    padding: 20px;
    overflow: hidden;
}

.alert-value-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
}

    .alert-value-item:first-child {
        align-items: flex-start;
    }

    .alert-value-item:last-child {
        align-items: flex-end;
    }

.alert-value {
    font-family: Nacelle;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 1);
    min-width: 0;
}

.alert-value.negative {
    color: rgba(216, 0, 39, 1);
}

.alert-value.positive {
    color: rgba(17, 191, 43, 1);
}

.alert-value.percentage-value {
    color: rgba(17, 191, 43, 1);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    display: block;
    cursor: default;
}

.alert-value.price-value {
    color: rgba(0, 0, 0, 1);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    display: block;
    cursor: default;
}

.alert-label {
    font-family: Nacelle;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0px;
    color: rgba(95, 95, 95, 1);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    .modal-overlay.active {
        display: flex;
    }

.modal-container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    padding: 24px;
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-header h3 {
    font-family: Space Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -1%;
    color: rgba(0, 0, 0, 1);
    margin: 0;
}

.modal-header p {
    font-family: Nacelle;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    color: rgba(125, 131, 152, 1);
    margin: 4px 0 0 0;
}

.modal-title {
    font-family: Space Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -1%;
    color: rgba(0, 0, 0, 1);
    margin: 0;
}

.modal-subtitle {
    font-size: 14px;
    color: #666;
    margin: 4px 0 0 0;
}

.modal-header p {
    font-family: Nacelle;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
    color: rgba(125, 131, 152, 1);
    margin: 4px 0 0 0;
}

.modal-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-close img {
        width: 24px;
        height: 24px;
    }

/* Modal Content */
.modal-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.fund-selection-container,
.portfolio-selection-container {
    width: 100%;
}

#createAlertModal .modal-header {
    margin-bottom: 20px;
}

.custom-select {
    width: 100%;
    position: relative;
}

.selected-item {
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 100px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.fund-info {
    display: flex;
    align-items: center;
}

.fund-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fund-name {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.fund-price-info {
    display: none;
    gap: 8px;
    font-size: 13px;
}

.daily-price {
    color: #6B7280;
}

.daily-return {
    color: #EF4444;
}

.daily-return.positive {
    color: #22C55E;
}

.daily-return.negative {
    color: #F93827;
}

.select-arrow {
    color: #6B7280;
}

.select-options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.search-container {
    padding: 12px;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #22C55E;
}

.options-list {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.options-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.loading-indicator {
    text-align: center;
    padding: 12px;
    color: #6B7280;
    font-size: 14px;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    border-top-color: #22C55E;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.select-option {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .select-option:hover {
        background-color: #F3F4F6;
    }

    .select-option.simple {
        padding: 12px 16px;
    }

    .select-option img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
    }

.option-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-name {
    font-size: 14px;
    color: #111827;
}

.option-price-info {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #6B7280;
}

    .item-select:focus {
        outline: none;
        border-color: #22C55E;
    }

.alarm-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .alarm-option:hover {
        border-color: #22C55E;
        background-color: rgba(34, 197, 94, 0.05);
    }

    .alarm-option.active {
        background: rgba(251, 255, 249, 1);
        border: 1px solid rgba(17, 191, 43, 1);
    }

    .alarm-option.active .alarm-option-icon svg path {
        stroke: rgba(17, 191, 43, 1) !important;
    }

.alarm-option-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .alarm-option-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

.alarm-option-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alarm-text-base {
    line-height: 26px;
    letter-spacing: 0%;
}

.alarm-text-heading {
    font-family: Space Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
}

.alarm-text-description {
    font-family: Nacelle;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
}

    .alarm-option-content h3 {
        margin: 0 0 4px 0;
    }

    .alarm-option-content p {
        margin: 0;
    }

/* Modal Footer */
.modal-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 16px;
}

.btn-cancel {
    padding: 16px;
    border: 1px solid #22C55E;
    background: white;
    border-radius: 8px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
    width: 100%;
}

    .btn-cancel:hover {
        background: #f9fafb;
    }

.btn-continue {
    padding: 16px;
    background: #22C55E;
    border: none;
    border-radius: 8px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    width: 100%;
}

    .btn-continue:hover {
        background: #16A34A;
    }

/* Modal Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-overlay.active {
    animation: modalFadeIn 0.3s ease-out;
}

/* Modal Ana Yapısı */
.alert-modal.active {
    display: flex !important;
}

.currency-btn.active {
    background-color: rgba(17, 191, 43, 1);
    color: rgba(255, 255, 255, 1);
}

.alert-modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Fon Bilgi Alanı */
.fund-header-info {
    text-align: center;
    padding: 12px 0;
}

/* Form Components */
.toggle-type,
.currency-toggle {
    display: flex;
    background: #F3F4F6;
    padding: 7px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
    height: 49px;
    border-radius: 32px;
}

.toggle-button {
    flex: 1;
    padding: 7px 12px;
    border: none;
    background: none;
    font-size: 14px;
    color: #6B7280;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    border-radius: 32px;
}

.type-btn.active {
    height: 36px;
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    border: 1px solid rgba(17, 191, 43, 1)
    }

.value-input-container {
    margin: 16px 0;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
}

.value-input {
    width: 100%;
    border: none;
    font-size: 18px;
    text-align: center;
    color: #111827;
}

.value-input:focus {
    outline: none;
}

/* Number input spinner'larını gizle */
.value-input::-webkit-outer-spin-button,
.value-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.value-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.direction-buttons {
    display: none;
    gap: 12px;
    margin: 16px 0;
}

.direction-button {
    flex: 1;
    padding: 7px 12px;
    border-radius: 12px;
    background: white;
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    height: 42px;
    border-radius: 42px;
}

.direction-button.active {
    background: rgba(231, 249, 234, 1);
    color: rgba(17, 191, 43, 1);
}

.direction-button.deactive {
    border: 1px solid rgba(205, 207, 219, 1);
}

/* Butonlar */
.alert-submit-button {
    width: 100%;
    padding: 14px;
    background: rgba(17, 191, 43, 1);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.alert-submit-button:hover {
    background: #059669;
}
@media (max-width: 768px) {
    .alert-modal-content {
        width: 95%;
        margin: 16px;
        max-height: 90vh;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .alert-modal-content {
        padding: 20px;
    }

    .direction-buttons {
        flex-direction: column;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .fund-alerts-container,
    .portfolio-alerts-container {
        grid-template-columns: repeat(auto-fill, minmax(261px, 1fr));
    }
}

a:hover {
    text-decoration: none;
    color: #4b5563;
}

.fund-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.fund-display {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.fund-display .fund-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fund-display .fund-info {
    flex-grow: 1;
    min-width: 0;
    overflow: hidden;
}

.fund-display .fund-info .fund-name {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    line-height: 1.2;
}

.fund-selection-container .search-trigger.selected {
    justify-content: flex-start;
    padding: 12px 16px;
    min-width: 0;
    overflow: hidden;
}

.search-trigger.selected .search-trigger-icon {
    display: none;
}

.fund-selection-container,
.portfolio-selection-container {
    width: 100%;
    min-width: 0;
}

.portfolio-selection-container .custom-select {
    width: 100%;
}

.search-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.search-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    z-index: 1000;
    padding: 24px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-modal.active,
.search-modal-backdrop.active {
    display: block;
}

.search-form-section {
    margin-bottom: 24px;
}

.search-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #22c55e;
}

.search-input-icon {
    position: absolute;
    left: 16px;
    color: #6b7280;
    pointer-events: none;
}

.search-input-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #22c55e;
    border: none;
    border-radius: 50%;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    visibility: hidden;
    opacity: 0;
}

.search-input-clear.visible {
    visibility: visible;
    opacity: 1;
}

.search-results {
    margin-bottom: 24px;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.search-results-title {
    font-weight: 500;
    color: #111;
}

.search-results-return {
    font-size: 14px;
    color: #6b7280;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.search-section {
    margin-bottom: 24px;
}

.search-section:last-child {
    margin-bottom: 0;
}

.search-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.search-section-title {
    font-weight: 500;
    color: #111;
}

.search-section-statistic {
    font-size: 14px;
    color: #6b7280;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-item:hover {
    background-color: #f9fafb;
}

.search-item-image-container {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-item-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.search-item-icon-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.search-item-content {
    flex-grow: 1;
    min-width: 0;
}

.search-item-title {
    font-weight: 500;
    color: #111;
    font-size: 14px;
    margin-bottom: 2px;
}

.search-item-subtitle {
    color: #6b7280;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item-return {
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
    margin-left: 12px;
}

.search-item-return--positive {
    color: #22c55e;
}

.search-item-return--negative {
    color: #ef4444;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 48px 24px;
}

.no-results-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.no-results-text {
    color: #6b7280;
}

.no-results-title {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
}

.no-results-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.loading-placeholder {
    padding: 24px;
    text-align: center;
    color: #6b7280;
}

.fund-selection-container .search-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    background: white;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.fund-selection-container .search-trigger:hover {
    border-color: #22c55e;
    color: #22c55e;
}

.fund-selection-container .search-trigger-icon {
    color: #6b7280;
}