.regular_button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(74, 74, 74);
    color: rgb(196, 196, 196);
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    user-select: none;
}

.regular_button:hover {
    background-color: rgb(102, 102, 102);
}

.regular_button:active {
    background-color: rgb(51, 51, 51);
    transform: translateY(1px);
}

.regular_button.disabled {
    background-color: rgb(50, 50, 50);
    color: rgb(100, 100, 100);
    cursor: not-allowed;
    pointer-events: none;
}

.icon_button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background-color: rgb(74, 74, 74);
    color: rgb(196, 196, 196);
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.icon_button:hover {
    background-color: rgb(102, 102, 102);
}

.icon_button:active {
    background-color: rgb(51, 51, 51);
    transform: translateY(1px);
}

.icon_button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}