/* Styling for the main container */
.recensisco-io-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center; /* Center content horizontally */
}

/* Styling for the icons */
.icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 10px;
    cursor: pointer;
    border-radius: 50%; /* Rounded shape for the icons */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.sad-icon {
    background-color: #ff8080;
}

.neutral-icon {
    background-color: #f0f0f0;
}

.smile-icon {
    background-color: #80ff80;
}

.icon img {
    width: 60px;
    height: 60px;
    margin: 20px;
}

/* Additional styles for forms, inputs, etc. */
#comment-form {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 5px;
    text-align: left; /* Left-align form elements */
}

#comment-form label,
#comment-form textarea,
#comment-form input[type="email"],
#comment-form input[type="submit"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#comment-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

#comment-form input[type="submit"]:hover {
    background-color: #005689;
}

@media (max-width: 768px) {
    /* Adjustments for smaller screens */
    .icon {
        width: 60px;
        height: 60px;
    }

    .icon img {
        width: 40px;
        height: 40px;
        margin: 10px;
    }

    #comment-form {
        padding: 10px;
    }
}
#email-comment-form .modal-content {
    border-radius: 0;
}

#email-comment-form .modal-header {
    background-color: #f8f9fa;
    border-bottom: none;
}

#email-comment-form .modal-title {
    font-size: 24px;
}

#email-comment-form .modal-body {
    padding: 20px;
}

#email-comment-form .modal-footer {
    border-top: none;
    padding: 20px;
}

#email-comment-form .close {
    font-size: 24px;
    color: #000;
}

@media (max-width: 576px) {
    #email-comment-form .modal-dialog {
        max-width: 100%;
        margin: 0;
    }
}
.review-page-link {
    display: inline-block;
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 10px;
}
