/* === Container === */
.ub-single-tvrtka-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* === Glavni kvadrat tvrtke === */
.ub-single-tvrtka-card {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 30px 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center; /* naziv i kategorija */
    box-sizing: border-box;
}

/* === Logo / Thumbnail === */
.ub-tvrtka-thumb {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 8px;
}

.ub-tvrtka-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* === Naziv tvrtke === */
.ub-single-tvrtka-card h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* === Kategorija / djelatnost === */
.ub-single-tvrtka-card .tax-pill {
    display: inline-block;
    background: #eee;
    color: #333;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    margin-bottom: 20px;
}

/* === Dodatni podaci (lijevo) === */
.ub-single-tvrtka-details {
    text-align: left;
    margin-top: 10px;
}

.ub-single-tvrtka-details p {
    margin: 5px 0;
    font-size: 1em;
}

.ub-single-tvrtka-details a {
    color: #28C7FC;
    text-decoration: none;
}

.ub-single-tvrtka-details a:hover {
    text-decoration: underline;
}
