/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Styling the ul to display list items inline (horizontal) */
ul.horizontal-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.horizontal-menu li {
    flex-basis: 49%; /* Adjust based on your needs */
    margin-bottom: 10px;
}
/* Button styling */
ul.horizontal-menu li a {
    display: block;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #e4002b;
    border: 1px solid #e4002b;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
ul.horizontal-menu li a:hover {
    background-color: #e4002b;
    border-color: #e4002b;
}


