/* Fundamanje Navigate Widget Styles */
.fundamanje-navigate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
    flex-wrap: wrap;
}

.fundamanje-navigate .nav-button {
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.fundamanje-navigate .nav-button:hover {
    background-color: #005a87;
    color: white;
    text-decoration: none;
}

.fundamanje-navigate .nav-button:visited {
    color: white;
}

.fundamanje-navigate .nav-category {
    background-color: #28a745;
    border-radius: 5px;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.fundamanje-navigate .nav-category a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-weight: 500;
}

.fundamanje-navigate .nav-category a:hover {
    color: white;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.fundamanje-navigate .nav-category a:visited {
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .fundamanje-navigate {
        flex-direction: column;
        gap: 8px;
    }
    
    .fundamanje-navigate .nav-button,
    .fundamanje-navigate .nav-category {
        width: 100%;
        text-align: center;
    }
    
    .fundamanje-navigate .nav-category {
        order: -1; /* Show category first on mobile */
    }
}

/* Widget-specific styles */
.widget .fundamanje-navigate {
    margin: 10px 0;
}

.widget .fundamanje-navigate .nav-button,
.widget .fundamanje-navigate .nav-category a {
    padding: 8px 15px;
    font-size: 14px;
}