﻿/* links.css */

.prod-a {
    color: #7987a1;
    text-decoration: none;
    cursor: pointer;
}

    .prod-a:hover {
        color: var(--bs-primary);
    }

    .prod-a.filled svg { 
        stroke: var(--bs-primary); /* Change to the desired color for the border */
        stroke-width: 3px; /* Optional: Adjust the border thickness if needed */
    }
