/* Main Styles */
.language-switcher {
    display: inline-block;
    margin-left: 20px;
}

.language-switcher ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.language-switcher li {
    margin: 0 5px;
}

.language-switcher span.active {
    font-weight: bold;
    color: #333;
}

.language-switcher a {
    color: #666;
    text-decoration: none;
}

.language-switcher a:hover {
    text-decoration: underline;
}

header nav {
    display: flex;
    align-items: center;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 30px 0;
}

.pagination-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.pagination-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pagination-button:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.pagination-button.active {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.pagination-button.disabled {
    color: #9ca3af;
    background-color: #f3f4f6;
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    color: #4b5563;
}

.pagination-info {
    font-size: 14px;
    color: #4b5563;
}

.pagination-text {
    margin: 0;
}

.font-medium {
    font-weight: 500;
} 