/* COMMON POPUP CSS START*/
.edbr_s_common_modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
[data-theme="dark-mode"] .edbr_s_common_modal{
    background-color: rgba(0,0,0,0.8);
}
[data-theme="light-mode"] .edbr_s_common_modal{
    background-color: rgba(255, 255, 255, 0.8);
}

.edbr_s_common_modal_content {
    padding: 0;
    border-radius: 16px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 0 15px;
}
[data-theme="dark-mode"] .edbr_s_common_modal_content{
    background-color: #15202b;
}
[data-theme="light-mode"] .edbr_s_common_modal_content{
    background-color: #fff;
}

.edbr_s_common_modal_header {
    padding: 20px 20px 10px;
    border-bottom: 1px solid #38444d;
    display: flex;
    justify-content: space-between;
}

.edbr_s_common_modal_header .edbr_s_common_modal_header_heading {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    
}
[data-theme="dark-mode"] .edbr_s_common_modal_header_heading{
    color: white;
}
[data-theme="light-mode"] .edbr_s_common_modal_header_heading{
    color: black;
}

.edbr_s_common_modal_close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #71767b;
}
[data-theme="dark-mode"] .edbr_s_common_modal_close:hover{
    color: white;
}
[data-theme="light-mode"] .edbr_s_common_modal_close:hover{
    color: black;
}

.edbr_s_common_modal_body {
    padding: 20px;
    
}
[data-theme="dark-mode"] .edbr_s_common_modal_body{
    color: white;
}
[data-theme="light-mode"] .edbr_s_common_modal_body{
    color: black;
}

.edbr_s_common_modal_footer {
    padding: 15px 20px;
    text-align: right;
    border-top: 1px solid #38444d;
}

.edbr_s_common_modal_footer_cancel_btn, .edbr_s_common_modal_footer_confirm_btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    margin-left: 8px;
}

[data-theme="dark-mode"] .edbr_s_common_modal_footer_cancel_btn{
    background-color: black;
    color: white;
    border: 1px solid white;
}
[data-theme="light-mode"] .edbr_s_common_modal_footer_cancel_btn{
    background-color: white;
    color: black;
    border: 1px solid black;
}

[data-theme="dark-mode"] .edbr_s_common_modal_footer_confirm_btn{
    background-color: white;
    color: black;
}
[data-theme="light-mode"] .edbr_s_common_modal_footer_confirm_btn{
    background-color: black;
    color: white;
}
/* COMMON POPUP CSS END*/
