body {
    background-color: #f8fafc;
    color: #334155;
    font-family: "Domine", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


a {
    text-decoration: none;
    color: #334155;
}

.navbar .btn:hover {
    background-color: #007bff; /* colore di sfondo al passaggio del mouse */
    color: white;               /* cambia il colore del testo al passaggio */
}

.card {
    border: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.profile-pic {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}
.form-control, .form-select {
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}
.form-control:focus, .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}
.btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
}
.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}


.profile-pic-amico {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}
.soprannomi {
    font-size: 1.2rem;
    color: #555;
}