/*
Theme Name: Aktualno Blank
Author: Antigravity
Version: 2.0.0
Description: Custom theme based on Google AI Labs redesign (Aktu)
*/

/* Core WordPress Alignments */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Pagination Styling to match Tailwind Theme */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-links a,
.nav-links span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.5rem;
    border-radius: 0.5rem;
    background-color: #ffffff;
    color: #4b5563;
    /* gray-600 */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    /* gray-200 */
}

.nav-links a:hover {
    background-color: #0057B7;
    /* brand-blue */
    color: #ffffff;
    border-color: #0057B7;
}

.nav-links span.current {
    background-color: #0057B7;
    /* brand-blue */
    color: #ffffff;
    border-color: #0057B7;
}