.modal {
    display: block;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);

}

.modal-content-wrapper {
    margin:20% auto;
    width: 80%;
    max-width: 400px;
}

.modal-content {
    display: block;
    position: relative; 
    background-color: rgba(25,25,25,1);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.4);
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.95);
    border-radius: 5px; 
    box-shadow: 
        inset 0 10px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(50,50,50,0.2),
        0px 0px 3px rgba(0,0,0,0.5),
    0 0 5px 0px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

[data-theme="light"] .modal-content {
    background-color: rgba(240,240,240,1);
    border: 1px solid rgba(0,0,0,0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.95);
    box-shadow: 
        inset 0 10px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(50,50,50,0.2),
        0px 0px 3px rgba(0,0,0,0.5),
    0 0 5px 0px rgba(0,0,0,0.3);
}

.modal-header {
padding-top:13px;
font-weight:500;
float:left;
}

.modal-header-wrapper {
border-bottom: 1px solid rgba(49, 49, 49, 0.8);
background: rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}

[data-theme="light"] .modal-header-wrapper {
border-bottom: 1px solid rgba(49, 49, 49, 0.8);
background: rgba(240, 240, 240, 0.2);
}

.close-btn {
  width:fit-content;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-left:auto;
    transition: all 0.3s ease;
}

.close-btn:hover,
.close-btn:focus {
    color: rgb(150,150,150);
}
