.wbi-front-list {
    overflow-x: auto;
}

.wbi-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.wbi-table th,
.wbi-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.wbi-table th {
    background: #f4f4f4;
}

.wbi-action-btn {
    margin-right: 6px;
    padding: 6px 10px;
    border: 1px solid #2271b1;
    background: #2271b1;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
}

.wbi-action-btn:hover {
    background: #135e96;
}

.wbi-table td:last-child {
    white-space: nowrap;
}

.wbi-front-pagination {
    margin-top: 14px;
}

.wbi-front-pagination a {
    display: inline-block;
    margin-right: 6px;
    padding: 4px 9px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.wbi-front-pagination a.is-current {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.wbi-copy-toolbar {
    margin: 12px 0 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.wbi-copy-btn {
    padding: 6px 10px;
    border: 1px solid #2271b1;
    background: #fff;
    color: #2271b1;
    border-radius: 4px;
    cursor: pointer;
}

.wbi-copy-btn:hover {
    background: #eaf4fb;
}

.wbi-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    min-width: 180px;
    max-width: 360px;
    padding: 10px 14px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.wbi-toast.is-show {
    opacity: 1;
    transform: translateY(0);
}

.wbi-toast.is-success {
    background: #2271b1;
}

.wbi-toast.is-error {
    background: #d63638;
}

.wbi-password-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
}

.wbi-password-modal.is-show {
    display: block;
}

.wbi-password-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.wbi-password-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    max-width: 360px;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wbi-password-dialog h3 {
    margin: 0 0 12px;
    font-size: 16px;
}

.wbi-password-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    margin-bottom: 12px;
}

.wbi-password-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.wbi-password-actions button {
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #2271b1;
    background: #2271b1;
    color: #fff;
    cursor: pointer;
}

.wbi-password-actions .wbi-btn-cancel {
    background: #fff;
    color: #2271b1;
}

