﻿customButton {
    font-family: Montserrat;
    margin-left: auto;
    color: #444444;
    justify-content: center;
    align-items: center;
    border: 1px solid #444444;
    display: flex;
    gap: 12px;
    float: right;
    border-radius: 20px;
    padding-top: 16px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
}

customButton:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

    customButton:focus {
        outline: none;
        transform: scale(1.1);
        transition: transform 0.2s ease;
    }

customButton svg {
    width: 22px;
    height: 19px;
}

action-buttons a {
    border: 1px;
    border-radius: 34.66px;
    border-color: #444444;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
}

action-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.inactive {
    pointer-events: none;
    opacity: 0.7;
}

.dark-button {
    background-color: #444444;
    color: #FFFFFF;
}

.dark-button svg{
    fill: #FFFFFF;
    stroke: #FFFFFF;
}

#changeAvatar{
    justify-self: end;
    align-self: start;
}