.regularbutton {
    background-color: var(--black-button-bg-color);
    color: white;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    border-radius: 80px;
    gap: 4px;
    box-shadow: 0px 24px 30px var(--box-shadow-color);
}

.regularbutton:hover {
    background-color: var(--blue-infinity-color);
    transform: scale(1.05);
}

.regularbutton span {
    font-size: 16px;
    font-weight: 500;
}

.regularbutton .material-symbols-outlined {
    font-size: 30px;
}

.logoutbutton {
    background-color: var(--red-card-bg-color);
    color: white;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    border-radius: 80px;
    gap: 4px;
    border: none;
    outline: none;
    box-shadow: none;
}

.logoutbutton:hover {
    transform: scale(1.05);
}

.logoutbutton span {
    font-size: 16px;
    font-weight: 500;
}

.logoutbutton .material-symbols-outlined {
    font-size: 30px;
}