css<style >
.layout-search-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    z-index: 1000;
}

.layout-search-box {
    position: relative;
    width: 100%;
}

.layout-search-input {
    width: 400px !important;
    padding: 14px 45px 14px 16px;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    z-index: 1001;
    background: #1e1e1e;
    color: #e0e0e0;
}
    .layout-search-input::placeholder {
        color: #666;
    }

    .layout-search-input.layout-active {
        border-radius: 8px 8px 0 0;
        border-bottom-color: #333;
    }

.layout-search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 20px;
    pointer-events: none;
    transition: color 0.3s;
    z-index: 999999;
}

.layout-search-input:focus ~ .layout-search-icon {
    color: #fa4646;
}

/* µå·Ó´Ù¿î ¸ð´Þ */
.layout-search-dropdown {
    background: #1e1e1e;
    border: 1px solid #333;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

    .layout-search-dropdown.layout-show {
        max-height: 850px;
        opacity: 1;
        overflow-y: auto;
    }

    /* ½ºÅ©·Ñ¹Ù ½ºÅ¸ÀÏ¸µ */
    .layout-search-dropdown::-webkit-scrollbar {
        width: 8px;
    }


    .layout-search-dropdown::-webkit-scrollbar-track {
        background: #252525;
    }

    .layout-search-dropdown::-webkit-scrollbar-thumb {
        background: #444;
        border-radius: 4px;
    }

        .layout-search-dropdown::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

/* °Ë»ö °á°ú */
.layout-search-results-wrapper {
    padding: 8px 0;
}

.layout-section {
    padding: 0 8px;
}
/* ¼½¼Ç Å¸ÀÌÆ² */
.layout-section-title {
    padding: 8px 12px;
    font-size: 14px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    background: #1a1a1a;
}

.layout-stock-rank {
    font-weight: 600;
    color: #ff6b6b;
    margin-right: 4px;
}

/* Á¾¸ñ ¾ÆÀÌÅÛ ´ÙÅ©¸ðµå */
.layout-stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #2a2a2a;
    background: #1e1e1e;
}

    .layout-stock-item:hover {
        background: #2a2a2a;
    }

    .layout-stock-item:last-child {
        border-bottom: none;
    }

.layout-stock-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.layout-stock-name {
    font-size: 15px;
    font-weight: 500;
    color: #e0e0e0;
}

    .layout-stock-name strong {
        color: #4a9eff;
    }

.layout-stock-code {
    font-size: 14px;
    color: #666;
    font-family: 'Roboto Mono', monospace;
}

/* ½ÃÀåº° »ö»ó (´ÙÅ©¸ðµå¿¡ ¸Â°Ô Á¶Á¤) */
.layout-stock-market {
    font-size: 11px;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
}

    .layout-stock-market.layout-kospi {
        background: #fa4646;
    }

    .layout-stock-market.layout-kosdaq {
        background: #1976d2;
    }

    .layout-stock-market.layout-nasdaq {
        background: #00897b;
    }

    .layout-stock-market.layout-nyse {
        background: #303f9f;
    }
    .layout-stock-market.layout-etf {
        background: #ff9800;
    }

    .layout-stock-market.layout-etn {
        background: #9c27b0; 
    }
    /* ±âº» market »ö»ó */
    .layout-stock-market:not(.layout-kospi):not(.layout-kosdaq):not(.layout-nasdaq):not(.layout-nyse) {
        background: #455a64;
    }

/* °Ë»ö °á°ú ¾øÀ½ */
.layout-no-results {
    padding: 32px 16px;
    text-align: center;
    color: #666;
    font-size: 14px;
    background: #1e1e1e;
}

/* ·Îµù »óÅÂ */
.layout-search-loading {
    padding: 24px;
    text-align: center;
    background: #1e1e1e;
}

    .layout-search-loading::after {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid #333;
        border-top: 2px solid #4a9eff;
        border-radius: 50%;
        animation: layout-spin 1s linear infinite;
    }

/* ¿À¹ö·¹ÀÌ ´ÙÅ©¸ðµå */
.layout-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9998;
}

    .layout-search-overlay.layout-show {
        display: block;
    }

.layout-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 8px;
    border-bottom: 1px solid #333;
    background: #1a1a1a;
    padding:0 !important;
}

.layout-close-btn {
    background: none;
    border: none;
    font-size: 30px !important;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    margin-bottom:7px;
    margin-right:7px;
}

.layout-stock-details {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.layout-stock-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.layout-tabs {
    display: flex;
}

.layout-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

    .layout-tab:hover {
        color: #fff;
    }

    .layout-tab.active {
        color: #fff;
    }

        .layout-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #fa4646;
        }

.layout-tab-content {
    padding: 10px 0;
}