
<style>

    .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.title-row .main-title {
    margin: 0;
}

    .instruction-wrapper {
    margin-bottom: 20px;
}

.instruction-title {
    font-size: 26px;
    font-weight: 400;
    color: #323130;
    margin-bottom: 10px;
}

.instruction-box {
    background: #e6e3b0;
    border-radius: 6px;
    padding: 18px 20px;
    color: #323130;
    font-size: 14px;
    line-height: 1.6;
}

body {
    background: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    color: #111111;
    margin: 0;
}

.page-container {
    max-width: 1400px;
    margin: 40px auto;
}

.main-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #111111;
}

.toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.search-box {
    width: 1250px;
    padding: 6px 10px;
    border: 1px solid #000000;
    font-size: 13px;
    background: #ffffff;
}

.search-box:focus {
    outline: none;
}

.page-size {
    width: 120px;
    padding: 6px 10px;
    border: 1px solid #000000;
    font-size: 13px;
    background: #ffffff;
}

.table-container {
    border: 1px solid #d6d6d6;
    background: #ffffff;
    max-height: 700px;
    overflow-y: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table thead th {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 2;
    font-weight: 600;
    color: #111111;
    text-align: left;
    padding: 8px 10px;
    border-bottom: 1px solid #d6d6d6;
    white-space: nowrap;
}

.custom-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #e1e1e1;
    font-size: 13px;
}

.custom-table tbody tr:hover {
    background: #f5f5f5;
    cursor: pointer;
}

.no-records {
    text-align: center;
    padding: 20px;
    color: #605e5c;
    font-size: 13px;
}

.col-search {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    cursor: pointer;
    opacity: 0.7;
    background-repeat: no-repeat;
    background-size: 12px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230078d4' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344l3.387 3.387-1.398 1.398-3.387-3.387A6.471 6.471 0 016.5 13C2.91 13 0 10.09 0 6.5S2.91 0 6.5 0 13 2.91 13 6.5c0 1.61-.586 3.084-1.558 4.195zM6.5 11C9.019 11 11 9.019 11 6.5S9.019 2 6.5 2 2 3.981 2 6.5 3.981 11 6.5 11z'/%3E%3C/svg%3E");
}

.col-search:hover {
    opacity: 1;
}

.search-popup {
    position: absolute;
    top: 30px;
    left: 0;
    width: 200px;
    background: #ffffff;
    border: 1px solid #a19f9d;
    padding: 8px;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.popup-input {
    width: 100%;
    padding: 6px;
    border: 1px solid #000000;
    margin-bottom: 6px;
    font-size: 13px;
}

.popup-actions {
    display: flex;
    justify-content: space-between;
}

.popup-btn {
    padding: 4px 8px;
    font-size: 12px;
    border: 1px solid #8a8886;
    background: #f3f2f1;
    cursor: pointer;
}

.popup-btn:hover {
    background: #edebe9;
}

.action-btn {
    background: #4f6bed;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.action-btn:hover {
    background: #3f5bdc;
}

.pagination-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 5px;
    font-size: 13px;
    color: #111111;
}

.pagination-btn {
    border: none;
    background: none;
    color: #0078d4;
    cursor: pointer;
    margin: 0 6px;
    font-size: 13px;
}

.pagination-btn.disabled {
    color: #aaaaaa;
    cursor: default;
}

.table-container::-webkit-scrollbar {
    width: 6px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #c8c6c4;
    border-radius: 3px;
}

.search-popup {
    z-index: 9999;
}

.loading-row {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    color: #323130;
}
</style>