.blur {
    filter: blur(2px);
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #D9E4DF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 10000;
    border-radius: 8px;
    
    width: 27vw;
    /* height: 30vh; */
}

.popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.popup-content h4 {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 1.5vw;
    margin-top: 0;
    margin-bottom: 20px;
}

.popup-content input, .popup-content select, .popup-content textarea {
    outline: none;
    border: none;
    width: 90%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    background-color: white;
}

.popup-content textarea {
    height: 25vh;
    resize: none;
}

.popup-content svg {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

.popup-content .btnSave {
    background-color: #F5C362;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
}

.popup-content .btnSave:disabled {
    background-color: #FFAEAA;
    color: white;
    cursor: not-allowed;
}

body.no-scroll {
    overflow: hidden; 
}

.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .popup {
        width: calc(85% - 40px);
    }

    .popup-content h4 {
        font-size: 1rem;
    }

    .popup-content svg {
        top: 0;
        right: 0;
    }
}