﻿.buttonHover {
    display: inline-block;
    border-radius: 5px;
    background-color: #0483b2;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: medium;
    transition: all 0.5s;
    cursor: pointer;
    padding: 5px;
}

    .buttonHover:hover {
        background-color: #0f68ad;
        border: 1px;
        border-color: black;
    }
    .buttonHover:focus {
        background-color: #56086c;
        border: 1px;
        border-color: white;
    }

.buttonHoverDanger {
    display: inline-block;
    border-radius: 5px;
    background-color: red;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: medium;
    transition: all 0.5s;
    cursor: pointer;
    padding: 5px;
}


.buttonPuple {
    display: inline-block;
    border-radius: 5px;
    background-color: #aa28fe;
    border: none;
    color:white;
    text-align: center;
    font-size: medium;
    transition: all 0.5s;
    cursor: pointer;
    padding: 5px;
}


.buttonHoverInTable {
    display: inline-block;
    border-radius: 5px;
    background-color: #0726c5;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 7pt;
    transition: all 0.5s;
    cursor: pointer;
    padding: 5px;
}

    .buttonHoverInTable:hover {
        background-color: #047eab;
        border: 1px;
        border-color: black;
    }


.buttonRichElectricBlue {
    display: inline-block;
    border-radius: 5px;
    background-color: #0e94d4;
    border: none;
    color: white;
    text-align: center;
    font-size: medium;
    transition: all 0.5s;
    cursor: pointer;
    padding: 5px;
    font-weight:bold;
}