/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 28px;
    font-weight: 500;
    color: #111;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.view-button {
    padding: 10px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    background: white;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.add-button {
    padding: 10px 20px;
    border: none;
    border-radius: 100px;
    background: #22c55e;
    color: white;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

/* Section Styles */
.section {
    margin-bottom: 48px;
}

.section-title {
    font-weight: 500;
    color: #111;
}

.section-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 24px;
}

/* Note Section Styles */
.note-section {
    margin-bottom: 48px;
}

.section-header {
    margin-bottom: 24px;
}

.section-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
}

.section-header p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.swal2-popup {
    font-family: 'Inter', sans-serif;
}

.swal2-confirm {
    background-color: #22c55e !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-weight: 500 !important;
}

.swal2-confirm:hover {
    background-color: #16a34a !important;
}

.swal2-cancel {
    background-color: #ef4444 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-weight: 500 !important;
}

.swal2-cancel:hover {
    background-color: #dc2626 !important;
}

.swal2-title {
    color: #111 !important;
    font-weight: 600 !important;
}

.swal2-html-container {
    color: #6b7280 !important;
}

/* Card Styles */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.card-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reminder-indicator {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #22c55e;
    pointer-events: none;
}

.reminder-indicator i {
    font-size: 26px;
    color: #22c55e;
}

.fund-icon {
    width: 100px;
    object-fit: cover;
}

.portfolio-icon,
.general-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}


.portfolio-icon {
    color: #22c55e;
}

.general-icon {
    color: #6366f1;
}

.card-code {
    color: #6b7280;
    margin-bottom: 4px;
}

.card-title {
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
}

.card-subtitle {
    color: #6b7280;
    margin: 2px 0;
}

.card-content {
    color: #374151;
    line-height: 1.5;
}

.card-actions {
    display: flex;
    margin-top: auto;
    justify-content: flex-end;
}

.card-actions button {
    padding: 8px;
    border: none;
    background: none;
    color: #6b7280;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

/* Modal Styles */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.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: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal.active,
.modal-backdrop.active {
    display: block;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.modal-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    color: #121212;
    line-height: 150%;
    letter-spacing: -1%;
}

.modal-subtitle {
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    opacity: 54%;
    line-height: 166%;
    letter-spacing: 0%;
    margin-top: 4px;
}

.close-button {
    background: #111;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    margin: -4px;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.close-button .sg-icon {
    width: 24px !important;
    height: 24px !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    transform: none !important;
}

.close-button:hover {
    background: #374151;
}

.form-section {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    color: #000000;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    line-height: 150%;
    letter-spacing: 0%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border: 1px solid #E7E7E7;
    box-shadow: none;
}

.form-textarea {
    min-height: 176px;
    resize: vertical;
    border: 1px solid #E7E7E7;
    background-color: #FFFFFF;
}

.radio-group,
.radio-group2 {
    display: flex;
    gap: 8px;
}

.radio-group {
    margin-bottom: 16px;
}

.radio-button {
    padding: 5px 16px;
    border: 1px solid #a6a6a6;
    border-radius: 100px;
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
    background: white;
    color: #a6a6a6;
    transition: all 0.2s ease;
    line-height: 150%;
    letter-spacing: 0%;
}

.radio-button.active {
    background: white;
    border: 1px solid #000000;
    color: #000000;
    font-weight: 400;
}

.reminder-section {
    margin-top: 20px;
}

.reminder-input-container {
    position: relative;
    margin-bottom: 8px;
}

.reminder-date {
    width: 100%;
    padding: 12px;
    padding-right: 40px;
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f9fafb;
    cursor: pointer;
    user-select: none;
    pointer-events: none;
}

/* Input'un kendi takvim ikonunu gizle */
.reminder-date::-webkit-calendar-picker-indicator {
    display: none;
}

.reminder-date::-webkit-inner-spin-button,
.reminder-date::-webkit-outer-spin-button {
    display: none;
}

.reminder-icon-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reminder-icon {
    color: #000000;
    width: 18px;
    height: 18px;
}

.reminder-help {
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    color: #22c55e;
    line-height: 150%;
    letter-spacing: 0%;
    margin-top: 4px;
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.button-group button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    cursor: pointer;
    line-height: 150%;
    letter-spacing: 0%;
}

.button-cancel {
    background: white;
    border: 1px solid #e5e7eb;
    color: #374151;
    border-radius: 8px;
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.button-save {
    background: #22c55e;
    border: none;
    color: white;
    border-radius: 8px;
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}


.portfolio-select option:checked {
    background-color: #22c55e !important;
    color: white !important;
}

.portfolio-select option:hover {
    background-color: #f0fdf4 !important;
}

.portfolio-select option:focus {
    background-color: #22c55e !important;
    color: white !important;
}

.tab-group {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.tab-button {
    background: white;
    border: 1px solid #a6a6a6;
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #a6a6a6;
    cursor: pointer;
    padding: 5px 16px;
    border-radius: 100px;
    transition: all 0.2s ease;
    line-height: 150%;
    letter-spacing: 0%;
}

.tab-button.active {
    background: white;
    border: 1px solid #000000;
    color: #000000;
    font-weight: 400;
}

/* Search Modal Styles */
.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-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.search-modal-title {
    font-size: 20px;
    font-weight: 500;
}

.search-modal-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.search-close-button {
    background: #111;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    margin: -4px;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.search-close-button .sg-icon {
    width: 24px !important;
    height: 24px !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    transform: none !important;
}

.search-form-section {
    margin-bottom: 20px;
}

.form-section .search-trigger {
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid rgba(14, 15, 12, 0.12);
    border-radius: 4px;
    padding: 16px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;
    letter-spacing: 0%;
    min-height: 22px;
}

.search-trigger.selected {
    border: 1px solid #E7E7E7;
    background-color: #ffffff;
    color: #000000;
    padding: 13px 16px;
}

.search-trigger .fund-display {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.search-trigger .fund-icon {
    width: 22px;
    height: 22px;
    border-radius: 26px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-trigger .fund-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.search-trigger .fund-code {
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 22px;
    letter-spacing: 0%;
}

.search-trigger .fund-name {
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 22px;
    letter-spacing: 0%;
}

.search-trigger:active {
    transform: translateY(0);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.search-close-button:hover {
    background: #374151;
}

.search-input-container {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 50px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.search-input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.search-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    z-index: 1;
}

.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-input-clear .sg-icon {
    width: 21px !important;
    height: 21px !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    transform: none !important;
}

.search-input-clear:hover {
    background: #16a34a;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 4px;
}

.search-results-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.search-results-return {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.search-results-list {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.search-section {
    margin-bottom: 24px;
}

.search-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 4px;
}

.search-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.search-section-statistic {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.search-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.search-item:hover {
    background-color: #f9fafb;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item--selected {
    background-color: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 8px;
    margin: 4px 0;
}

.search-item-image-container {
    width: 36px;
    height: 36px;
    position: relative;
    flex-shrink: 0;
}

.search-item-image {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.search-item-icon-fallback {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.search-item-content {
    flex: 1;
}

.search-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 2px;
}

.search-item-subtitle {
    font-size: 12px;
    color: #6b7280;
}

.search-item-return {
    font-weight: 600;
    font-size: 14px;
}

.search-item-return--positive {
    color: #22c55e;
}

.search-item-return--negative {
    color: #ef4444;
}

.loading-placeholder {
    padding: 20px;
    text-align: center;
    color: #6b7280;
}

.no-results {
    text-align: center;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-results-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 48px;
}

.no-results-text {
    text-align: center;
}

.no-results-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    color: #000000;
    margin-bottom: 8px;
    line-height: 24px;
    letter-spacing: -0.005em;
    text-align: center;
}

.no-results-subtitle {
    font-family: 'Nacelle', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    line-height: 24px;
    letter-spacing: -0.005em;
    text-align: center;
    margin: 0;
}

/* Empty State Styles */
.note-empty-state {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.note-empty-state-icon {
    position: relative;
    width: 106px;
    height: 105px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-icon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-empty-state-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    margin-bottom: 8px;
    line-height: 100%;
    letter-spacing: 0%;
}

.note-empty-state-description {
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    opacity: 54%;
    line-height: 166%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 20px;
}

.note-empty-state-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

.search-modal {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.search-modal::-webkit-scrollbar {
    display: none;
}

.search-results-list,
#recentSearchesList,
#popularSearchesList {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.search-results-list::-webkit-scrollbar,
#recentSearchesList::-webkit-scrollbar,
#popularSearchesList::-webkit-scrollbar {
    display: none;
}

.modal {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal::-webkit-scrollbar {
    display: none;
}


.card-header a,
.card-header a:hover,
.card-header a:focus {
    text-decoration: none;
    border-bottom: none;
}

/* Yeni Fon Kartı Stilleri */
.trend-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
}

/* Reminder indicator pozisyonu için */
.trend-card .reminder-indicator {
    position: absolute;
    top: 31px;
    right: 10px;
    z-index: 10;
}

.trend-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.hover-with-opacity:hover {
    opacity: 0.9;
}

.fund-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fund-card-start {
    align-items: flex-start;
}

.fund-logo {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 26px;
    flex-shrink: 0;
}

.fund-logo-36px {
    width: 36px;
    height: 36px;
}

.fund-details {
    flex: 1;
    min-width: 0;
    margin-top: 6px;
    cursor: pointer;
}

.fund-code {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    line-height: 26px;
    letter-spacing: 0%;
}

.fund-name {
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    line-height: 26px;
    letter-spacing: 0%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.note-title {
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    color: #111;
    margin: 8px 0 4px 0;
    line-height: 1.3;
}

/* Satım butonu stilleri - Figma tasarımına göre */
.sell-button {
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #747474;
    background-color: transparent;
    border: 1.38px solid #E9EAEF;
    border-radius: 44px;
    padding: 4px 12px;
    cursor: default;
    display: inline-block;
    line-height: 18.57px;
    letter-spacing: 0px;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin: 6px 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sell-button:hover {
    background-color: #f8f9fa;
    border-color: #d1d5db;
}

/* Note content ve Satım butonunu yan yana getirmek için */
.fund-details {
    display: flex;
    flex-direction: column;
}

/* Satım butonu ve note content'i yan yana getirmek için */
.fund-details .sell-button,
.fund-details .note-content {
    display: inline-block;
    vertical-align: top;
}

.fund-details .sell-button {
    margin-right: 12px;
    margin-bottom: 0;
}

.fund-details .note-content {
    flex: 1;
    margin: 0;
}

/* Note content ve card actions'ı yan yana getirmek için */
.content-actions-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.content-actions-row .note-content {
    flex: 1;
    margin: 0;
    max-width: calc(100% - 80px);
}

.content-actions-row .card-actions {
    flex-shrink: 0;
    margin: 0;
}

.content-actions-row .card-content {
    flex: 1;
    margin: 0;
    max-width: calc(100% - 80px);
}

.note-content {
    font-family: 'Nacelle', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    opacity: 54%;
    line-height: 150%;
    letter-spacing: -1%;
    margin: 0;
}

.note-body {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    max-width: 100%;
    overflow: hidden;
}

.note-content {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    margin: 12px 0 16px 0;
    word-wrap: break-word;
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .fund-card {
        gap: 10px;
    }

    .fund-logo-36px {
        width: 32px;
        height: 32px;
    }

    .fund-code {
        font-size: 15px;
    }

    .fund-name {
        font-size: 13px;
    }

    .note-title {
        font-size: 13px;
    }

    .note-content {
        font-size: 13px;
    }
}

.card-header {
    border-bottom: none;
    background-color: transparent;
    padding: 0!important;
}

.delete-note {
    cursor: pointer;
}

.edit-note {
    cursor: pointer;
}
.fund-card.fund-card-start{
    max-width: 36px;
}

.note-list-item {
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.note-list-item:hover {
    background-color: #f9fafb;
}

.note-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.note-list-title {
    font-weight: 500;
    color: #111;
    font-size: 14px;
}

.note-list-reminder {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #22c55e;
}

.note-list-content {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}