﻿body {
}

.AddButton
{
    width:130px;
    height:40px;    
    font-size:xx-large;
    font-family:Arial;  
    color:white;
    cursor:pointer; 
    border: 0;
    border-radius: 10px;
    box-shadow: 7px 9px 13px #666;
    background: linear-gradient(135deg, green, lightgreen);     
}

.AddButton:hover {
    border: 0;
    box-shadow: 1px 3px 7px #999;
    background : green;
}

.CancelButton
{
    width:130px;
    height:40px;
    font-size:xx-large;
    font-family:Arial;  
    color:white; 
    cursor:pointer ;   
    border: 0;
    border-radius: 10px;
    box-shadow: 7px 9px 13px #666;
    background: linear-gradient(135deg, red, lightsalmon);  
}

.CancelButton:hover {
    border: 0;
    box-shadow: 1px 3px 7px #999;
    background : red;
}

.RoundedCorners {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
