/* public/css/custom.css */
.custom-link {
    color: white;
    text-decoration: underline;    /* text-decoration: underline; */
    text-decoration-color: #14df80; 
    transition: color 0.3s ease;
}

.custom-link:hover {
    color: #14df80;
}
