/* This file is reserved for overriding and extending the template styles. */

.custom-legend-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Space between items */
    justify-content: center;
}

.custom-legend-item a {
    width: 100px; /* Adjust width to align in two rows */
    text-align: center;
}

@media (max-width: 768px) {
    .custom-legend-container {
        justify-content: center;
        gap: 10px;
    }
    
    .custom-legend-item a {
        flex: 1 1 30%; /* Allow three items per row */
        max-width: 30%;
    }
}
