﻿.agenda-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px;
    margin: 0px;
    list-style: none;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
}

.agenda-menu li {
    margin: 0;
}

.agenda-menu ul li a {
    padding-right: 8px !important;
    padding-left: 8px !important;
}

.agenda-menu a {
    display: block;
    padding: 4px 6px;
    border-radius: 8px;
    color: #0d6efd;
    background: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    border: 1px solid #dee2e6;
    transition: 0.15s ease;
}

    .agenda-menu a:hover {
        background: #0d6efd;
        color: white;
        border-color: #0d6efd;
    }

    .agenda-menu a.selected,
    .agenda-menu .selected a {
        background: #198754;
        color: white;
        border-color: #198754;
        font-weight: bold;
    }
