.myButton {
    background:linear-gradient(to bottom, #7a7a7a 5%, #9e9e9e 100%);
    background-color:#7a7a7a;
    border-radius:6px;
    border-width: 0px;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-size:14px;
    font-weight:bold;
    padding:7px 35px;
    text-decoration:none;
}
.myButton:hover {
    background:linear-gradient(to bottom, #9e9e9e 5%, #7a7a7a 100%);
    background-color:#9e9e9e;
}
.myButton:active {
    position:relative;
    top:1px;
}
.css-button {
    font-family: Roboto, sans-serif;
    font-weight: bold;
    color: #FFFFFF;
    font-size: 12px;
    border-radius: 8px;
    border: 0px #000000 solid;
    background: linear-gradient(180deg, #757575 5%, #adadad 100%);
    text-shadow: 1px 1px 1px #000000;
    box-shadow: 1px 1px 0px -1px #383838;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.css-button:hover {
    background: linear-gradient(180deg, #adadad 5%, #757575 100%);
    color:#FFFFFF;
}
.css-button-icon {
    padding: 8px 11px;
    border-radius: 8px 0 0 8px;
    background-color: #707070;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: rgba(0, 0, 0, 0.14) -1px 0px 0px inset;
}
.css-button-text {
    padding: 8px 18px;
}

.deleteIcon {
    z-index: 10;
    color: indianred;
    border-width: 0px;
    background: none;
    font-size:10px;
    width:.5em;
    height: .5em;
    text-align: right;
}

.editIcon {
    z-index: 10;
    color: #009EE3;
    border-width: 0px;
    background: none;
    font-size:10px;
    width:.5em;
    height: .5em;
    text-align: right;
}

.addIcon {
    z-index: 10;
    color: #4eb400;
    border-width: 0px;
    background: none;
    font-size:10px;
    width:.5em;
    height: .5em;
    text-align: right;
}

.arrowIcon {
    z-index: 10;
    border-width: 0px;
    background: none;
    font-size:10px;
    width:.5em;
    height: .5em;
    text-align: right;
}

.addButton {
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    background: #898989;
    background-image: linear-gradient(180deg,#bbbbbb 0%,#cfcfcf 100%);
    font-size: .8em;
    color: #eeeeee;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
    margin-bottom: 5px;
}

.addButton:hover {
    border-width: 1px;
    border-color: #9e9e9e;
    border-radius: 4px 4px 4px 4px;
    background: #898989;
    background-image: linear-gradient(180deg,#777777 0%,#999999 100%);
    font-size: .8em;
    color: #eeeeee;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
    margin-bottom: 5px;
}


.iconbtnadd {
    background-color: #FFFFFF; /* white background */
    border: none; /* Remove borders */
    color:#4eb400; /* text */
    padding: 0px; /* Some padding */
    font-size: 14px; /* Set a font size */
    cursor: pointer; /* Mouse pointer on hover */
    width: 15px;
    margin:0px;
    padding:0px;
}

/* Darker background on mouse-over */
.iconbtnadd:hover {
    color:#009EE3; /* White text */
    font-size: 16px;
}

.iconbtnedit {
    background-color: #FFFFFF; /* white background */
    border: none; /* Remove borders */
    color:#009EE3; /* text */
    padding: 0px; /* Some padding */
    font-size: 14px; /* Set a font size */
    cursor: pointer; /* Mouse pointer on hover */
    width: 15px;
}

/* Darker background on mouse-over */
.iconbtnedit:hover {
    color:#4eb400; /* White text */
    font-size: 16px;
}