#dcp-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #ffffffd6;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#dcp-popup {
    background: #1e3a8a;
    color: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    font-family: sans-serif;
    position: relative;
}

#dcp-popup strong {
    color: #fff;
}

#dcp-popup ul {
    padding-left: 20px;
    margin-top: 10px;
}

#dcp-buttons {
    margin-top: 20px;
    text-align: center;
}

#dcp-buttons button {
    padding: 10px 20px;
    margin: 5px;
    background: white;
    color: black;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

#dcp-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
    color: white;
}