.hapus-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.hapus-box {
    background: #fff;
    width: 320px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    font-family: Arial, sans-serif;
}

.hapus-box h5 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.hapus-box p {
    font-size: 13px;
    margin-bottom: 15px;
    color: #666;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px;
    background: #fff;
}

.input-group input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
}

.input-group span {
    cursor: pointer;
    padding: 0 5px;
    user-select: none;
}

.btn-group {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-group button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
}

.btn-group button:first-child {
    background: #dc3545;
    /* Merah untuk Hapus/Login */
    color: #fff;
}

.btn-group button:last-child {
    background: #6c757d;
    /* Abu-abu untuk Batal */
    color: #fff;
}

.btn-group button:hover {
    opacity: 0.9;
}