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

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

.graph-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
    overflow: hidden;
}

#grafo-profesiones {
    width: 100%;
    height: 700px;
}

.header-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #004d40 0%, #00796b 100%);
    color: white;
    margin-bottom: 2rem;
    border-radius: 0 0 24px 24px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-refresh {
    background-color: #26a69a;
    border-color: #26a69a;
    color: white;
    transition: all 0.3s ease;
}

.btn-refresh:hover {
    background-color: #00897b;
    border-color: #00897b;
    color: white;
    transform: translateY(-2px);
}
