.ticket-button {
    display: inline-block;     /* Allows padding and width settings on a link */
    background-color: #EE3124; /* Baseline grey color */
    color: #ffffff;            /* White text color */
    padding: 12px 24px;        /* Spacing inside the button */
    font-size: 16px;           /* Text size */
    font-family: sans-serif;   /* Match standard clean web fonts */
    font-weight: bold;         /* Makes the text pop */
    text-decoration: none;     /* Removes the default link underline */
    border-radius: 30px;        /* Slightly rounds the corners */
    transition: background-color 0.3s ease; /* Smooth fade from grey to red */
    align-items: center;
   justify-content: center;
}

.Button__btnFont {
    background-color: #EE3124;
}

.Button__btnFont:hover {
    background-color: #EE3124;
}

.SearchContainer__searchIcon {
    background-color: #EE3124;
}

/* Hover effect */
.ticket-button:hover {
    background-color: #EE3124; /* A clean, vibrant red */
    color: #ffffff;            /* Ensures text stays white on hover */
}
