@font-face {
    font-family: 'StudentStoriesFont';
    src: url('fonts/Lionel Text Genuine Regular.ttf');
}

.filter-box-unique {
    background-color: #ffffff;
    margin: 0 auto 10px;
    padding: 10px 15px;
    height: 60px;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* max-width removed so it can expand fully */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: StudentStoriesFont;
}


.filter-box-unique form {
    display: flex;
    justify-content: space-evenly; /* even gaps between buttons and edges */
    align-items: center;
    width: 100%;       /* fill the filter-box width */
    box-sizing: border-box;
    margin: 0;         /* reset any extra margins */
    padding: 0;        /* if you had padding here, remove it */
}

.filter-button-unique {
    font-family: StudentStoriesFont;
    padding: 8px 13px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
    background-color: transparent;
    cursor: pointer;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.filter-button-unique img {
    margin-right: 5px;
    height: 18px;
}

.filter-button-unique:hover {
    background-color: #e0e0e0;
    color: #333;
}

.filter-button-unique.active-filter-unique {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}

.filter-button-unique img.best-icon-unique {
    height: 27px;
}

.filter-button-unique img.rising-icon-unique {
    height: 27px;
}
