body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container {
    display: flex;
    height: 100vh; /* Full height of the viewport */
}

.left {
    width: 15%;
    background-color: lightblue;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.left label {
    font-size: 16px;
    margin-bottom: 0;
}

.left select,
.left button {
    width: 80%;
    padding: 10px;
    margin: 5px 0;
    font-size: 16px;
    cursor: pointer;
}

.middle{
    width: 42.5%;
    background-color: lightgray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.right {
    width: 42.5%;
    background-color: lightyellow;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.review-label {
    font-size: 16px;
    margin-bottom: 5px;
}

textarea {
    width: 90%;
    height: 80%;
    padding: 10px;
    font-size: 16px;
    resize: none;
    border: 1px solid #ccc;
    border-radius: 5px;
}
