.dashboard #content {
    width: 80%;
}

:root {
    --green-primary: #3c9c7b;
    --green-primary-d1: #0a4430;
    --white: #ffffff;
}


.bg-green-primary {
    background-color: var(--green-primary);
    color: var(--white);
}

.btn-green-primary {
    background-color: var(--green-primary);
    color: var(--white);
}

.btn-green-primary:hover {
    background-color: var(--green-primary-d1);
    color: var(--white);
}

.btn:hover {
    text-decoration: none;
}

.btn:focus {
    text-decoration: none;
    outline: none !important;
}

.text-green-primary {
    color: var(--green-primary);
}

.text-white {
    color: var(--white) !important;
}