.box-with-shadow {
    background: white;
    border: 0 none;
    border-radius: 8px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    width: 100%;
    position: relative;
    transition: height 0.3s ease-in-out;
}

.box-with-shadow:hover {
    cursor: pointer;
    background-color: #ECECEC;
}

.box-with-shadow-no-hover:hover {
    cursor: default;
    background-color: white;
}

.application-user-details {
    display: none;
}

.application-active {
    display: block;
}

.box-with-shadow.application-active .application-user-details {
    display: block;
}
.add-review-form-box {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 40px;
    padding: 20px;
    border: 3px solid var(--primaryColor);
    background-color: white;
    border-radius: 20px;
    display: block;
}


