
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* text normal */
    background-color: #f8f9fa;
}

h1, h2, h3, label, th {
  font-weight: 600; /* titluri sau elemente importante */
}


.card-login {
    max-width: 400px;
    margin: 100px auto;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.dashboard-card {
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.table-primary {
    background-color: #cce5ff !important;
  }