/********** Custom CSS **********/

.btn-success {
    background-color: #bdff72;
    color: black;
    border:none;
    border-radius: 5px;
}

.btn-success:hover {
    background-color: #66c000;
    color: black;
}
.btn-info {
    background-color: #0cc0df;
    color: black;
    border:none;
    border-radius: 5px;
}
.btn-info:hover {
    background-color: #088196;
    color: black;
}
.btn-light {
    background-color: #ffffff;
    color: black;
    border:none;
    border-radius: 5px;
}
.btn-light:hover {
    background-color: #cccccc;
    color: black;
}
.btn-primary {
    background-color: #0cc0df;
    color: white;
    border:none;
    border-radius: 5px;
}
.btn-primary:hover {
    background-color: #0056b3;
    color: white;
}
.btn-warning {
    border-radius: 5px;
    border:none;
}
.btn-warning:hover {
    border-radius: 5px;
    background-color: darkorange;
}
.btn-dark {
    border-radius: 5px;
    border:none;
}
.btn-dark:hover {
    border-radius: 5px;
    background-color: darkblue;
}