.ai-quality-check .form-container {
    background-color: white;
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 12px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.ai-quality-check h2 {
    color: #39a571; /* Green text for the "Free" heading */
    font-size: 26px;
    margin-bottom: 10px;
}

.ai-quality-check h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #333;
}

.ai-quality-check p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.ai-quality-check .step {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.ai-quality-check label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.ai-quality-check select, .ai-quality-check textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.ai-quality-check select:hover, .ai-quality-check textarea:hover {
    border-color: #39a571;
}

.ai-quality-check textarea {
    resize: none;
}

.ai-quality-check button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.ai-quality-check button:hover {
    background-color: #0056b3;
}

.ai-quality-check .apply-button {
    background-color: #ff5733;
    margin-top: 20px;
    padding: 12px 20px;
    transition: background-color 0.3s ease;
}

.ai-quality-check .apply-button:hover {
    background-color: #e64e1c;
}

.ai-quality-check .note {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}



.google-review-loading-modal,
.google-review-reply-modal,
.google-review-error-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black with transparency */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.google-review-loading,
.google-review-reply-modal .modal-content,
.google-review-error-modal .modal-content {
    background-color: #fefefe; /* White background for modal content */
    padding: 20px;
    border: 1px solid #888; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    text-align: center; /* Center text in modal */
    width: 90%; /* Width for mobile */
    max-width: 500px; /* Max width for larger screens */
}

.google-review-close {
    cursor: pointer; /* Pointer cursor for close button */
    font-size: 24px; /* Adjust size for better visibility */
    color: #e74c3c; /* Red color for close icon */
    background: none; /* Remove background */
    border: none; /* Remove border */
    position: absolute; /* Position close icon in the top-right corner */
    top: 15px;
    right: 20px;
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.google-review-close:hover {
    color: #c0392b; /* Darker red on hover */
}

.google-review-copy-button {
    background-color: #3498db; /* Initial button color */
    color: white; /* Button text color */
    padding: 10px 15px; /* Button padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    transition: background-color 0.3s ease; /* Smooth transition for hover */
}

.google-review-copy-button:hover {
    background-color: #2980b9; /* Darker blue on hover */
}