.bdcp-deactivation-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bdcp-deactivation-dialog {
    width: 550px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}

.bdcp-deactivation-modal-header {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    padding: 18px 15px;
    text-align: start;
}

.bdcp-deactivation-modal-title {
    font-size: 15px;
    font-weight: 700;
    padding-inline-start: 5px;
    text-transform: uppercase;
}

.bdcp-deactivation-modal-content {
    padding: 30px;
    text-align: start;
}

.bdcp-deactivation-modal-subtitle {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.bdcp-deactivation-options-list {
    margin: 30px 0;
}

.bdcp-deactivation-option {
    align-items: center;
    display: flex;
    line-height: 2;
    overflow: hidden;
    gap: 8px;
}

.bdcp-deactivation-buttons {
    display: flex;
    justify-content: space-between;
}

.bdcp-btn-deactivation-submit {
    border: none;
    border-radius: 3px;
    color: #f8f9fa;
    background-color: #212529;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    outline: none;
    padding: 8px 16px;
    transition: all 0.3s;
    cursor: pointer;
}
.bdcp-btn-deactivation-submit:hover {
    opacity: 0.75;
}
.bdcp-btn-deactivation-submit:active {
    opacity: 1;
}

.bdcp-btn-deactivation-skip {
    border: none;
    border-radius: 3px;
    color: #212529;
    background-color: transparent;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    outline: none;
    padding: 8px 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.bdcp-btn-deactivation-skip:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.bdcp-deactivation-selection-error {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: red;
    display: none;
}

@media only screen and (max-width: 550px) {
    .bdcp-deactivation-dialog {
        width: 90%;
    }
    .bdcp-deactivation-option {
        margin-bottom: 10px;
    }
    .bdcp-deactivation-option:last-child {
        margin-bottom: 0;
    }
    .bdcp-deactivation-modal-content {
        padding: 15px;
    }
}
