.path-overlay{
    font-family: sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}
.path-overlay.active{
    opacity: 1;
    pointer-events: auto;
}
.path-form-container{
    position: relative;
    max-width: 550px;
    height: auto;
    min-height: unset;
    width: 100%;
    top: auto;
    left: auto;
    z-index: 101;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.path-form-close{
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    color: #05668D;
}

#modal-main-title{
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #028090;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
}

.onboarding-subtitle{
    text-align: center;
    margin: 10px auto 30px auto;
    max-width: 80%;
    color: #555;
    line-height: 1.5;
    font-weight: 1.1em;
}
.helper-text{
    text-align: center;
    font-size: 0.85em;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}
.dropdown{
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.dropdown label{
    width: 70px;
    padding-top: 5px;
    margin-bottom: 5px;
    text-align: right;
    font-size: 0.85rem;
    color: #757575;
    line-height: 1.4;
}
.dropdown select{
    background-color: #fff;
    border-radius: 10px;
    height: 45px ;
    padding: 0 15px;
    width: 80%;
    max-width: 500px;
    font-size: 14px;
    transition: 200ms ease;
    border: 1.5px solid #edecec;
    
}
.dropdown select:not(:disabled):hover{
    border-color: #028090;
}
.dropdown select:focus{
    outline: none;
    border-color: #05668D;
    background-color: rgb(237, 245, 249);;
}
.path-btn-group{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.save-changes{
    background-color: #028090;
    color: #ffffff;
    margin-top: 50px;
    width: 30%;
    padding: 10px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: 200ms ease;
    border: none;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.save-changes:not(:disabled):hover{
    background-color: #05668D;
}
.cancel-changes{
    background-color: #edecec;
    color: #1a1a1a;
    margin-top: 50px;
    width: 30%;
    padding: 10px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: 200ms ease;
    border: none;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.cancel-changes:hover{
    background-color: #e0dfdf;
}
select:disabled, 
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
    border-color: #ddd;
}
button:disabled{
    color: #000;
}
.path-form-container.is-onboarding{
    max-width: 550px;
    padding: 35px 30px;
    border-radius: 20px;
}
.is-onboarding .path-btn-group{
    justify-content: center;
}
.is-onboarding .save-changes,
.is-onboarding .cancel-changes{
    width: 100%;
    margin-top: 15px !important;
    font-size: 1.1rem;
    height: 45px;
}
.is-onboarding .dropdown label{
    width: auto;
    min-width: 70px;
}