/* Basic styling for the feedback form */
.feedback-form {
    position: relative;
    bottom: 0px;
    left: 20px;
    width: 180px;
    background-color: rgba(241, 241, 241, 0.6);
    padding: 5px;
    border-radius: 10px;
    border: 1px #656565 solid;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease-in-out;
}

.contentBody {
    padding-bottom: 35px;
}

.feedback-form h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.stars input {
    display: none;
}

.stars label {
    cursor: pointer;
    font-size: 2em;
    color: lightgray;
    transition: color 0.2s;
}

/* Change color of stars on hover */
.stars label:hover,
.stars label:hover ~ label {
    color: lightgray;
}

.stars label:hover,
.stars label:hover ~ label {
    color: gold;
}

/* Change color of stars when checked */
.stars input:checked ~ label {
    color: lightgray;
}

button {
    width: 100%;
    background-color: rgb(101,101,101);
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    
    margin-left:0%;
    margin-top: 10px;
    margin-bottom: 10px;
}

button:hover {
    background-color: #007ac9;
}

.feedback_survey {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    background-color: rgba(241, 241, 241, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.feedback_survey.active {
    display: block;
}

.feedback-question {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.fbuttons {
    display: flex;
    gap: 10px;
}

.feedback-button img {
    width: 30px;
    height: 30px;
}

/* Custom message styling */
.feedback-message {
    display: none;
    margin-top: 10px;
    color: red;
    font-size: 1em;
    text-align: center;
}

/* Styles specific to macOS */
.mac-os .feedback-form {
    width: 12.25em; /* Adjust width for macOS */
}