.tonari {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button-link {
    padding: 12px 16px;
    background-color: rgb(68, 68, 68); /* rgb(229,129,9) */
    color: white !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 16px;
    transition: background-color 0.3s;
}

.small-icon {
    margin-right: 5px;
    width: 22px;
}

.button-link:hover {
    background-color: black;
}

@media (max-width: 600px) {
    .button-link {
        padding: 8px 10px;
        font-size: 10px;
    }
	.small-icon {
        width: 14px;
    }
    .tonari {
		gap: 10px;
	}
}
