nav {
    padding: .5rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav > a {
    padding: .5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.2);
}

nav > a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

nav > a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

/*pagination*/
nav > div.sm\:justify-between {
    justify-content: unset;
}

span.rtl\:flex-row-reverse {
    direction: ltr;
    margin-right: 1rem;
}
/*pagination*/
