@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.linkedin-blue {
    background-color: #0077b5;
}

.linkedin-blue-hover:hover {
    background-color: #005885;
}

.linkedin-light-blue {
    background-color: #70b5f9;
}

.job-card-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.job-card-shadow:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.gradient-bg {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.search-shadow {
    box-shadow: 0 4px 20px rgba(0, 119, 181, 0.2);
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.text-linkedin {
    color: #0077b5;
}

.border-linkedin {
    border-color: #0077b5;
}
