body {
    margin: 0;
    padding: 0;
}

.hero-image {
    height: 120px !important;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
    overflow: hidden;
}

.hero-image__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-image__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-image__content {
    position: relative;
    z-index: 3;
}

.menu-buttons {
    margin: 10px 0;
}

.menu-btn {
    width: 100%;
    padding: 3px;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.bg-black {
    background-color: black !important;
    color: white !important;
}

.bg-gray {
    background-color: #f0f0f0 !important;
    color: black !important;
}

.text-black {
    color: #000 !important;
}

.p0 {
    padding: 0 !important;
}

.p5 {
    padding: 5px !important;
}

.m0 {
    margin: 0 !important;
}

.mtb-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.no-radius {
    border-radius: 0 !important;
}

.no-radius .panel-heading,
.no-radius .panel-footer {
    border-radius: 0 !important;
}