/* Google Reviews Plugin - Default Styles */
/* css/google-reviews-style.css */

.grp-reviews-container {
    font-family: "Futura", sans-serif !important; /* New default font */
    font-weight: 500 !important; /* New default font weight */
    color: #41525a; /* New default text color */
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.grp-review-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.grp-review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.grp-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.grp-reviewer-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.grp-reviewer-details {
    display: flex;
    flex-direction: column;
}

.grp-reviewer-name {
    font-weight: bold; /* Keep bold for emphasis, can be overridden by user CSS */
    color: inherit; /* Inherit color from .grp-reviews-container or can be specific */
    font-size: 1rem !important; /* New default font size */
    margin-bottom: 2px; /* Add a little space below name */
}

.grp-review-time {
    font-size: 0.8rem !important; /* New default font size */
    color: #777; /* Keep a slightly lighter color for time, can be overridden */
}

.grp-rating-stars {
    margin-bottom: 8px;
    line-height: 1; /* Ensure stars align nicely */
}

.grp-star {
    font-size: 1.3em; /* Adjust size of stars */
    /* Star color is now applied to grp-star-full for specificity */
}

.grp-star-full {
    color: #41525a; /* New star color */
}

.grp-star-empty {
    color: #ccc; /* Color for empty stars, provides contrast */
}

.grp-review-text {
    font-size: 0.8rem !important; /* New default font size */
    color: inherit; /* Inherit base text color from .grp-reviews-container */
    line-height: 1.6;
    margin-bottom: 10px;
}

.grp-review-text p {
    margin-top: 0;
    margin-bottom: 0; /* Paragraphs inside review text shouldn't have extra margin */
}

.grp-error, .grp-no-reviews {
    color: #777;
    padding: 10px;
    border: 1px dashed #ccc;
    text-align: center;
    background-color: #f9f9f9;
    font-family: "Futura", sans-serif; /* Consistent font */
    font-size: 0.9rem;
}

.grp-read-more-on-google {
    font-size: 0.8rem; /* Adjusted to match other small text */
    color: #1a73e8; /* Keep distinct link color */
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
}

.grp-read-more-on-google:hover {
    text-decoration: underline;
}

/* Admin settings page specific styles (optional, if needed) */
/* Input fields in admin are styled by WordPress core, adding specific styles here is usually not necessary unless for complex UI elements */
#grp_custom_css {
    font-family: monospace;
    width: 100%; /* Make textarea responsive */
}

.form-table th { /* Improve alignment of labels in admin */
    padding-top: 15px;
}
