/* ·j´M°Ï */
.filter {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .filter #SearchWord {
        width: 240px;
        max-width: 100%;
    }

/* Modal */
.target-modal-mask {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.target-modal-box {
    width: 720px;
    max-width: calc(100% - 32px);
    background: #fff;
    border-radius: 8px;
    margin: 80px auto 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.target-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.target-modal-title {
    font-size: 20px;
    font-weight: 600;
}

.target-modal-close {
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.target-modal-body {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.target-modal-table {
    width: 100%;
    border-collapse: collapse;
}

    .target-modal-table th,
    .target-modal-table td {
        border: 1px solid #ddd;
        padding: 10px 12px;
    }

    .target-modal-table th {
        background: #f5f5f5;
    }
