<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* íŽ˜ì´ì§€ íƒ€ì´í‹€ ì˜ì—­ */
.page-title {
    text-align: center;
    padding-block: 4rem;
    margin-top: 3rem;
}

.page-title h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.page-title p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ê²€ìƒ‰ ì˜ì—­ */
.search-container {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin: -20px auto 10px;
    position: relative;
    max-width: 1440px;
}

.search-form {
    width: 100%;
}

.search-row {
    display: grid;
    grid-template-columns: 200px 200px 200px 1fr;
    gap: 20px;
    align-items: start;
}

/* ë¼ë²¨ ì•„ì´ì½˜ ìŠ¤íƒ€ì¼ */
.label-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.label-icon i {
    color: #1a4b84;
    font-size: 16px;
}

.label-icon span {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

/* í•„í„° ê·¸ë£¹ ìŠ¤íƒ€ì¼ */
.filter-group {
    position: relative;
}

.filter-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    transition: all 0.2s;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a4b84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.filter-group select:hover {
    border-color: #1a4b84;
    background-color: #f8f9fa;
}

.filter-group select:focus {
    border-color: #1a4b84;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 75, 132, 0.1);
}

/* ê²€ìƒ‰ ìž…ë&nbsp;¥ ê·¸ë£¹ */
.search-input-group {
    display: flex;
    flex-direction: column;
}

.input-button-wrapper {
    display: flex;
    gap: 10px;
}

.search-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    transition: all 0.2s;
}

.search-input-group input:hover {
    border-color: #1a4b84;
    background-color: #f8f9fa;
}

.search-input-group input:focus {
    border-color: #1a4b84;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 75, 132, 0.1);
    background-color: #fff;
}

.search-button {
    padding: 0 24px;
    height: 45px;
    background: linear-gradient(to right, #1a4b84, #2c6cb5);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-button:hover {
    background: linear-gradient(to right, #15406f, #2661a3);
    transform: translateY(-1px);
}

/* í…Œì´ë¸” ì˜ì—­ */
.table-container {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px -1px rgba(0,0,0,0.1);
    margin-top: 10px;
    position: relative;
}

.parts-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
}

.parts-table thead th {
    background: #1a4b84;
    color: #fff;
    font-weight: 500;
    text-align: center;
    top: 0;
    z-index: 0;
}

.parts-table th {
    background: #094581;
    color: #fff;
    padding: 15px;
    font-weight: bold !important;
    text-align: center;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

.parts-table th:first-child {
    border-top-left-radius: 8px;
}

.parts-table th:last-child {
    border-top-right-radius: 8px;
}

.parts-table td {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
    font-size: 14px;
    color: #444;
    background: #fff;
}

.parts-table td.center {
    text-align: center;
    color: #495057;
}

.parts-table td.right {
    text-align: right;
    color: #495057;
    font-weight: 500;
}

.parts-table tbody tr:hover {
    background-color: #f8f9fa;
}

.parts-table tbody tr:hover td {
    background-color: #f8f9fa;
}

/* íŽ˜ì´ì§€ë„¤ì´ì…˜ ìŠ¤íƒ€ì¼ */
.pagination-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
}

.page-btn:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.page-btn.active {
    background: linear-gradient(to right, #1a4b84, #2c6cb5);
    color: #fff;
    border: none;
}

/* ë°˜ì‘í˜• ìŠ¤íƒ€ì¼ */
@media screen and (max-width: 1439px) {
    .search-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .search-input-group {
        grid-column: 1 / -1; /* ì&nbsp;„ì²´ ë„ˆë¹„ ì‚¬ìš© */
        margin-top: 10px;
    }

    .filter-group {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .page-title {
        padding: 40px 0;
    }

    .page-title h1 {
        font-size: 28px;
    }

    .search-container {
        padding: 16px;
        margin: 0 15px 20px;
    }

    .search-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .filter-group {
        width: 100%;
    }

    .search-input-group {
        position: relative;
        width: 100%;
        background: #fff;
        border-radius: 8px;
        padding: 0;
        margin-top: 12px;
    }

    .search-input-group input {
        width: 100%;
        height: 50px;
        padding: 12px 110px 12px 16px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        font-size: 15px;
        background-color: #fff;
    }

    .search-input-group input::placeholder {
        color: #adb5bd;
    }

    .search-button {
        position: absolute;
        right: 0%;
        top: 68%;
        transform: translateY(-50%);
        height: 50px;
        background: #1a4b84;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 500;
        white-space: nowrap;
    }

    .search-button i {
        display: none;
    }

    .parts-table th,
    .parts-table td {
        padding: 10px;
        font-size: 13px;
    }

    .page-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* ìˆœë²ˆ ì—´ ìŠ¤íƒ€ì¼ */
.parts-table td:first-child {
    color: #6c757d;
    font-weight: 500;
}

/* ê°€ê²© ì—´ ìŠ¤íƒ€ì¼ */
.parts-table td:last-child {
    font-weight: 600;
    color: #2c3e50;
}

/* ìŠ¤í¬ë¡¤ë°” ìŠ¤íƒ€ì¼ë§ */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #1a4b84;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #2c6cb5;
}

/* ì•&nbsp;ë‹ˆë©”ì´ì…˜ íš¨ê³¼ */
.search-group select,
.search-group input,
.search-button {
    transition: all 0.2s ease-in-out;
}

/* ìž…ë&nbsp;¥ í•„ë“œ í¬ì»¤ìŠ¤ íš¨ê³¼ */
.search-group select:focus,
.search-group input:focus {
    transform: translateY(-1px);
}
.table-header {
    text-align: right;
    margin-bottom: 8px;
    background: transparent;
    position: relative;
    z-index: 1;
    box-shadow: none;
}

.update-date {
    font-size: 12px;
    color: #666;
    font-weight: normal;
    background: transparent;
    padding: 2px 5px;
    display: inline-block;
}
</pre></body></html>