.regular_button {
    display: inline-block;
    padding: 10px 22px;
    box-sizing: border-box;
    background-color: rgb(74, 74, 74);
    color: rgb(196, 196, 196);
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    line-height: 20px; 
    transition: background-color 0.3s ease, transform 0.3s ease;
    user-select: none;
    height: 40px;
    margin: 4px;
    white-space: nowrap;
    font-family: 'Exo2', sans-serif;
    font-weight: 300;
    font-size: 16px;
    pointer-events: auto;
}

.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.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 4px;
    user-select: none;
    pointer-events: auto;
}

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

.small-button {
    width: 32px !important;
    height: 32px !important;
}

.tiny-button {
    width: 24px !important;
    height: 24px !important;
}

.transparent-button {
    background-color: transparent !important;
    margin: 0;
}

.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;
}

.tiny-button-icon {
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.small-button-icon {
    width: 17px;
    height: 17px;
    pointer-events: none;
}

.medium-button-icon {
    width: 20px;
    height: 20px;
    pointer-events: none;
}