/* === CSS za stranice djelatnosti === */

.ub-taxonomy-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.ub-taxonomy-page h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.ub-term-description {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Grid glavnih kategorija i podkategorija */
.ub-djelatnosti-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Osnovna kartica */
.ub-djelatnosti-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrirano za glavni naslov i ikonu */
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ub-djelatnosti-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Ikona kategorije */
.ub-djelatnosti-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.ub-djelatnosti-icon {
    max-width: 100%;
    max-height: 100%;
}

/* Glavni naslov u kartici */
.ub-djelatnosti-card h3,
.ub-djelatnosti-card h4 {
    margin: 0 0 10px 0;
    text-align: center; /* Centrirano */
    font-weight: 600;
}

/* Badge s brojem tvrtki */
.ub-badge {
    display: inline-block;
    background: #28C7FC;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Glavne kategorije */
.ub-djelatnosti-parent {
    background: #e0f7ff;
}

/* Podkategorije */
.ub-djelatnosti-child {
    background: #f0f0f0;
}

/* Tekst dodatnih informacija u podkategorijama ako bude */
.ub-djelatnosti-child p {
    text-align: left;
    font-size: 14px;
    color: #555;
}

/* Responsivno */
@media (max-width: 1024px) {
    .ub-djelatnosti-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .ub-djelatnosti-card {
        width: 100%;
    }
}
