/* Google Rating Plugin - Shared Frontend Styles */

/* Shared linking styles for both templates */
.google-rating-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.google-rating-link:hover,
.google-rating-link:focus {
    text-decoration: none;
    color: inherit;
}

.google-rating-linked {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.google-rating-linked:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Star color customization */
.text-warning {
    color: #ffc107 !important;
}

/* Alert styles for error messages */
.alert {
    padding: 12px 16px;
    margin: 20px 0;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}