.booking-menu a {
    background: #ff4d4d;          /* Red background */
    color: #fff !important;       /* White text */
    padding: 5px 15px;            /* Smaller padding */
    border-radius: 50px;          /* Oval shape */
    font-size: 14px;              /* Match menu font size */
    line-height: 1.2;             /* Keeps it balanced */
    font-weight: 600;
    box-shadow: 0 0 6px rgba(255, 77, 77, 0.4);
    animation: pulse 1.5s infinite;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: middle;       /* Align with menu items */
}

.booking-menu a:hover {
    background: #e60000;
    box-shadow: 0 0 12px rgba(230, 0, 0, 0.6);
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}
