body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #f8fafc;
}

.hero-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star {
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 24px;
}

.star:hover {
    transform: scale(1.1);
}

.star.active {
    color: #fbbf24;
}

.star.inactive {
    color: #d1d5db;
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
}

.company-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.rating-summary {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    padding: 16px;
}
