body {
    background-color: #f7f5ed;
    text-align: center;
}

.container {
    margin-top: 20px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4d4d4;
}

.container-top{
	width: 500px;
	margin-left: auto;
	margin-right: auto;
}


.btn-custom {
    background-color: white;
    border-radius: 25px;
    padding: 15px;
    border: 1px solid #d4d4d4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6b705c;
    font-size: 18px;
    font-weight: bold;
    height: 60px;
    width: 480px;
    position: relative;
    gap: 10px; /* Spazio tra icona e testo */
}

/* Icona allineata a sinistra, centrata verticalmente */
.icon {
    font-size: 22px;
    min-width: 40px; /* Mantiene la spaziatura tra icona e testo */
    text-align: center;
}

/* Testo centrato rispetto all'intero bottone */
.btn-custom span {
    flex-grow: 1;
    text-align: center;
    margin-right: 40px;
}

.btn-custom:hover {
    background-color: #e9e9e9;
}

@media (max-width: 576px) {
    .btn-custom {
        width: 90%;
    }
	.container-top{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
}

/* Contenitore della bandiera */
.flag-container {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
}

.flag {
    width: 32px;
    height: 24px;
    cursor: pointer;
}










.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 0px; /* via padding */
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #6b705c;
    z-index: 1; /* la linea passa dietro */
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px; /* più spazio dal cerchio */
    text-align: left;
}

.timeline-icon {
    position: absolute;
    left: 10px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #f7f5ed; /* colore sfondo per bucare la linea */
    border: 4px solid #6b705c; /* bordo spesso uguale alla linea */
    border-radius: 50%;
    z-index: 2; /* il cerchio sopra la linea */
}

.timeline-content h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}




.btn-custom-collapse {
    background-color: #6b705c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-custom-collapse:hover {
    background-color: #58624b;
}