#star-review-plugin {
    margin: 20px 0;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	width:100%;
	max-width:600px;
}

#star-rating .star {
    cursor: pointer;
    font-size: 2em;
    color: #ccc;
    transition: color 0.2s ease-in-out;
}

#star-rating .star:hover,
#star-rating .star.selected {
    color: #f90;
}
#review-form{
	width:100%;	
}
.info_holder{
    margin-bottom: 15px;	
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	gap: 10px;
}
.info_holder div{
	flex-grow:1;	
}
.info_holder input{
	width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
}
.info_holder label{
	text-transform:uppercase;
	font-size:14px;
	font-weight: 600;
    letter-spacing: -0.5px;
}
#low-rating-form {
    margin-top: 20px;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

#review-text {
    width: 100%;
    height: 150px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#submit-review {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 12px;
    padding-bottom: 12px;
}

#submit-review:hover {
    background-color: #005a8c;
}

#message {
	margin-top: 20px;
    padding: 10px;
    background-color: #0073aa;
    border-left: 4px solid #0073aa;
    font-size: 14px;
    width: 100%;
    max-width: 350px;
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 10px;
}
