/* Aqui é possível personalizar cada um dos botões */

.link-gray {
    color: white;
    background-color: rgb(70, 70, 70);
}
.link-gray:hover {
    color: white;
    background-color: rgba(30, 30, 30);
}

.link-green {
    color: white;
    background-color: rgb(0, 155, 12);
}
.link-green:hover {
    color: white;
    background-color: rgba(0, 105, 0);
}

.link-red {
    color: white;
    background-color: rgb(226, 30, 30);
}
.link-red:hover {
    color: white;
    background-color: rgb(156, 0, 0);
}

.link-orange {
    color: white;
    background-color: rgb(255, 165, 0);
}
.link-orange:hover {
    color: white;
    background-color: rgb(205, 106, 3);
}

.link-blue {
    color: white;
    background-color: rgb(9, 100, 235);
}
.link-blue:hover {
    color: white;
    background-color: rgb(9, 31, 190);
}

/* MESSAGES */

.message-success {
    color: white;
    background-color: rgb(0, 155, 12);
}
.message-info {
    color: white;
    background-color: rgb(9, 100, 235);
}
.message-error {
    color: white;
    background-color: rgb(226, 30, 30);
}