#rating {
    margin: 20px 0;
}
  
#rating span {
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}
  
#rating span:hover, #rating span.selected {
    color: gold;
}

.hidden {
    display: none;
}
  
.interaction-buttons {
    margin: 20px 0;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
  
.modal-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    width: 80%;
    max-width: 400px;
}
  
.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
  
#modal-message {
    font-size: 18px;
    color: #333;
    margin: 20px 0;
}
  
.hidden {
    display: none;
}

