


/* BUTTONS */
.button {
    border-radius: 4px;
    background-color: #76CAE2;
    border: none;
    color: white;
    padding: 0px 2px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button1:hover {
    background-color: white; 
    color: black; 
}

.button1 {
    background-color: #76CAE2;
    color: white;
    border: 2px solid #76CAE2;
}

input, select {
	border-radius: 5px;
	-webkit-border-radius: 5;
}
.table td, .table th{
    padding: 3px;
}
.table th{
    text-align:left;
}
.table thead{
    background:#dfdfdf;
}
.table{
    min-width: 60vw;
}