﻿.button_Default {
    text-decoration: none;
    padding: 2px 15px 2px 15px;
    cursor: pointer;
    margin-right: 2px;
    margin-left: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.0em;
}
.button_Compact {
    text-decoration: none;
    cursor: pointer;
    padding: 0px;
    margin: 0px;
}
.button_Add {
    color: green;
    text-decoration: none;
    padding: 2px 15px 2px 15px;
    cursor: pointer;
}
.button_Add:hover {
        color: #00BB00;
        background-color: #d7ffd6;
    }
.button_Edit {
    color: blue;
    text-decoration: none;
    padding: 2px 15px 2px 15px;
    cursor: pointer;
}
.button_Edit:hover {
        color: #0000BB;
        background-color: lightblue;
    }
.button_Remove {
    color: darkred;
    text-decoration: none;
    padding: 2px 15px 2px 15px;
    cursor: pointer;
}
.button_Remove:hover {
        color: #BB0000;
        background-color: lightpink;
    }
.button_Default.XSmall {
    font-size: x-small;
}
.button_Default.Popup {
}
.button_Disabled {
    color: gray;
    text-decoration: none;
    padding: 2px 15px 2px 15px;
    cursor: default;
}