/* Smart Review Plugin CSS */
.smart-review-widget {
    max-width: 400px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.smart-review-container {
    position: relative;
}

.smart-review-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.smart-review-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.smart-review-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 0 20px 0;
}

.smart-review-star {
    font-size: 40px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.smart-review-star:hover {
    transform: scale(1.1);
}

.smart-review-star.active {
    color: #ffd700;
}

.smart-review-star.hover {
    color: #ffd700;
}

.smart-review-star.highlight {
    color: #ffd700;
}

.smart-review-message {
    animation: fadeIn 0.5s ease;
}

.smart-review-thanks {
    font-size: 18px;
    color: #4caf50;
    font-weight: 500;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .smart-review-widget {
        margin: 20px;
        padding: 20px;
    }
    
    .smart-review-title {
        font-size: 20px;
    }
    
    .smart-review-subtitle {
        font-size: 14px;
    }
    
    .smart-review-star {
        font-size: 35px;
    }
    
    .smart-review-stars {
        gap: 5px;
    }
}

/* Admin Styles */
.smart-review-admin-preview {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    background: #f9f9f9;
}

.smart-review-admin-preview h3 {
    margin-top: 0;
    color: #666;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .smart-review-widget {
        background: #2a2a2a;
        border: 1px solid #444;
    }
    
    .smart-review-title {
        color: #ffffff;
    }
    
    .smart-review-subtitle {
        color: #cccccc;
    }
    
    .smart-review-star {
        color: #555555;
    }
    
    .smart-review-star.hover,
    .smart-review-star.active,
    .smart-review-star.highlight {
        color: #ffd700;
    }
}