.button-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 35px;
    display: flex;
    gap: 1px;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
}

.button {
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
}

.button:nth-child(2):hover {
    transform: scale(1.1) rotate(360deg);
}
.button:nth-child(2) {
    transition: transform 0.4s ease-in-out;
}

.button:not(:nth-child(2)):hover {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.button:not(:hover) {
    transform: scale(1) rotate(0deg);
    box-shadow: none;
}

.button img {
    width: 24px;
    height: 24px;
    filter: invert(1);
    opacity: 0.85;
}

.button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.15);
}

.button:active {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}