/* Top Searches Bar */
.top-searches-bar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
}

.top-searches-bar span {
    font-weight: bold;
    margin-right: 10px;
}

.top-searches-bar .tag {
    background-color: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid #ccc;
    margin-right: 8px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.top-searches-bar .tag:hover {
    background-color: #fff;
}
/* Style for the icon buttons */
.icon-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border: 0px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 120px;
    text-align: center;
}

.icon-button i {
    font-size: 24px; /* Icon size */
    margin-bottom: 8px; /* Space between icon and text */
}

.icon-button span {
    font-size: 12px; /* Text size */
    color: #333; /* Text color */
}

/* Style for buttons on hover */
.icon-button:hover {
    background-color: #ddd;
}

/* Links bar */
.links-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
}

.links-bar a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
}

.links-bar a:not(:last-child)::after {
    content: "|";
    color: #aaa;
    margin-left: 10px;
}