.dap-btn {
    background-color: #007c89;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}
.dap-btn:hover { background-color: #4F9B02; }

.dap-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
}

.dap-popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%; max-width: 400px;
    position: relative;
}

.dap-popup-content input,
.dap-popup-content select {
    width: 100%;
    padding: 8px;
    margin: 6px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.dap-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 22px;
}
