/* Feeling Hungry Button Styles */
.categories .container {
    position: relative;
    text-align: center;
}

.categories h2 {
    display: block;
    margin: 0 auto;
}

.heading-border {
    clear: both;
    margin-top: 10px;
}

.feeling-hungry {
    display: inline-block;
    position: absolute;
    right: -30px;
    top: 0;
    vertical-align: middle;
    margin: 0 0 10px 0;
    font-size: 16px;
    padding: 12px 20px;
    text-align: center;
    border-radius: 50px;
    z-index: 9999;
    background-color: #ff6b81;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    
}

.feeling-hungry:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #ff4757;
}

.feeling-hungry i {
    margin-right: 8px;
}

.food-highlight {
    animation: pulse 1s ease-in-out;
    box-shadow: 0 0 20px rgba(255, 107, 129, 0.8);
    transform: scale(1.03);
    transition: all 0.5s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 129, 0.7);
    }
    
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 107, 129, 0.5);
    }
    
    100% {
        transform: scale(1.03);
        box-shadow: 0 0 20px rgba(255, 107, 129, 0.8);
    }
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}