.popup-wrapper{
    position: absolute;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    display: none;
    z-index: 999;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #282a2e20;
}

.popup{
    min-height: 200px;
    min-width: 310px;
    background-color: white;
    border-radius: 10px;
    max-width: 600px;
    max-height: 95vh;
    overflow: auto;
}

.popup-header{
    display: flex;
    width: 100%;
    padding: 10px;
    /* height: 40px; */
    align-items: center;
    border-bottom: 1px solid var(--orange);
    justify-content: space-between;
    position: relative;
    margin-bottom: 15px;
}

.popup-name{
    font-size: 20px;
    font-weight: 600;
    color: var(--orange);
}

.close-popup-btn{
    border: none;
    color: white;
    height: 38.5px;
    width: 25px;
    cursor: pointer;
    font-weight: 900;
    background-color: var(--orange);
    position: absolute;
    top: 4px;
    right: 4px;
    border-radius: 2px 2px 2px 2px;
}
.close-popup-btn:hover{
    background-color: red;
}

.input-group{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.popup-body{
    padding: 0 15px;
}


.submit-btn{
    width: 100px;
    margin: 0 auto;
    height: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 6px;
    color: white;
    background-color: var(--orange);
    border: none;
}

.submit-btn:hover{
    color: white;
    background-color: var(--blue);
}


