.star-rating {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 25px;
    flex-direction: row-reverse;
}
.star-rating input {
    display: none;
}
.star-rating label {
    font-size: 45px !important;
    color: gray;
    cursor: pointer;
    margin: 0px 7px 0 0;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: gold;
}
#attraction-feedback-form {
    max-width: 100%;
}
#attraction-feedback-form label {
    display: block;
    margin-top: 10px;
}
#attraction-feedback-form input,
#attraction-feedback-form select,
#attraction-feedback-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
}

#attraction-feedback-form button {
    margin-top : 15px;
    margin-bottom: 30px;
}
.feedback-message {
    margin-top: 10px;
    font-weight: bold;
}

#attraction-feedback-form label {
    font-size: 16px;
    font-family: "Roboto", Sans-serif;
    font-weight: bold;
}

.combined-select-box {
    display: grid;
    align-items: center;
    grid: minmax(49%, min-content) / repeat(auto-fill, 49%);
    gap: 7px;
}

.selectBoxStyled {
    
}

.textarea-container {
    padding: 15PX 0PX;
}

.textarea-container textarea {
    border : 1px solid #777;
    height: 180px;
    resize : none;
}

.input-combined-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.combo-field {
    flex: 1 1 24%;
}

.combo-field input {
    padding: 8px;
     border : 1px solid #777;
}

.check-text-container {
    padding: 10px 0;
}

.check-text-container label {
    display: flex !important;
}

.check-text-container label input {
    width : 25px !important;
}

.feedBackViewButton {
    padding: 8px;
    z-index: 9999;
    background-color: var(--e-global-color-accent);
    fill: #000000;
    width: 132px;
    height: 43px;
    position: fixed;
    transform: rotate(90deg);
    left: -43px;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    top: 40%;
}

.feedBackViewButton:hover {
    background-color : #000;
}

.feedBackViewButton a {
     font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.feedBackViewButton:hover a{
    color : var(--e-global-color-accent);;
}

@media (max-width: 768px) {
    .combo-field {
        flex: 1 1 100%; /* single column on mobile */
    }
}