.menu-bar {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.menu-entry {
    background: #222;
    padding: 0;
    border-radius: 6px;
    width: 23%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
    overflow: hidden; /* keeps title bar clean */
}

.menu-entry a {
    text-decoration: none;
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
}

/* Title bar (the “button tab”) */
.menu-title-bar {
    background: #444;
    padding: 10px 20px;
}

.menu-title {
    font-size: 20px;
    font-weight: bold;
}

/* Description area */
.menu-desc {
    font-size: 14px;
    color: #ccc;
    padding: 15px 20px;
    line-height: 1.4;
}

/* Hover: whole box lights up */
.menu-entry:hover {
    background: #444;
}

/* Active page: whole box is #444 */
.menu-entry.active {
    background: #444;
}
