/* ================================
   TOKENS
================================ */
:root {
    --content-w: 90%;
    --base-font-size: 18px;
    --news-gap: 1rem;
    /* Brand */
    --brand: #12c2d9; /*glavna brand boja*/
    --brand-dark: #12c2d9;
    --brand-light: #c6478a;
    --menu-accent: #12c2d9; /*header u side-meniju (svijetli mod) */
    /*--brand: #9e1e62;*/ /* glavna brand boja */
    /*--brand-dark: 9e1e62;*/
    /*--brand-light: #c6478a;*/
    /*--menu-accent: #9e1e62;*/ /* header u side-meniju (svijetli mod) */
    /* Bootstrap varijable koje ne diramo globalno
     (globalni linkovi ostaju po Bootstrp-u; nav i side-menu rješavamo ciljano) */
    --bs-primary: var(--brand);
    --bs-link-color: var(--brand);
    --bs-link-hover-color: #083e7c;
}

/* ================================
   BASE
================================ */
html {
    font-size: var(--base-font-size);
    scroll-behavior: smooth;
}
a {
    color: var(--brand)
}
a:hover{
    text-decoration: none;
}
body {
    font-family: "Inter",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
.page-title {
    font-weight: 700;
}
.content-wrapper, .wrapper {
    width: var(--content-w);
    margin-inline: auto;
    padding-inline: calc(var(--bs-gutter-x)*.5);
}

@media (max-width:575.98px) {
    .content-wrapper, .wrapper {
        width: 98%;
        padding-inline: .75rem;
    }
}

/* Topbar */
.topbar {
    font-size: .95rem;
    border-bottom: 1px solid var(--bs-border-color);
}

    .topbar a {
        text-decoration: none;
    }

/* Header / Navbar */
header {
    padding-block: .5rem;
}



/* A11y font */
.dyslexia-friendly {
    font-family: "Atkinson Hyperlegible",system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,sans-serif;
    letter-spacing: .2px;
    word-spacing: .6px;
    line-height: 1.7;
}

/* ================================
   HERO
================================ */
.hero {
    background: var(--bs-tertiary-bg);
    border-radius: .75rem;
    padding: clamp(1rem,3vw + .5rem,3rem);
    margin-top: 1rem;
}
.hero a{
    color:#fff!important;
    text-decoration: underline!important;
}
    .hero a:hover {
        text-decoration: none !important;
    }

/* ================================
   FOOTER
================================ */
footer {
    border-top: 1px solid var(--bs-border-color);
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

    .skip-link:focus {
        left: 1rem;
        top: 1rem;
        width: auto;
        height: auto;
        padding: .5rem .75rem;
        background: var(--bs-body-bg);
        border: 1px solid var(--bs-border-color);
        border-radius: .375rem;
        z-index: 1050;
    }

/* Media */
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* Naslov sekcije: veličina ~h1 + kratka podcrtana linija na početku */
.section-title {
    font-weight: 700;
    /* h1-ish, ali responsivno */
    font-size: clamp(1.75rem, 1.1rem + 2.4vw, 2.5rem);
    line-height: 1.2;
    padding-bottom: .25rem;
}

    .section-title::after {
        content: "";
        display: block;
        width: 3rem; /* kratko podcrtavanje, ne preko cijele širine */
        height: 4px;
        background: var(--brand);
        border-radius: 2px;
        margin-top: .35rem;
    }
/* Dark mode: Section header i link bijeli */
html[data-bs-theme="dark"] .section-title {
    color: #fff;
}

    html[data-bs-theme="dark"] .section-title::after {
        background: #fff;
    }

/* Brand link (umjesto .link-primary) */
.link-brand {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

    .link-brand:hover,
    .link-brand:focus {
        color: var(--brand);
        text-decoration: underline;
        text-underline-offset: .2em;
    }

html[data-bs-theme="dark"] .link-brand {
    color: #fff !important;
}

    html[data-bs-theme="dark"] .link-brand:hover,
    html[data-bs-theme="dark"] .link-brand:focus {
        color: #fff !important;
        text-decoration: underline;
        text-underline-offset: .2em;
    }
/* ================================
   Article mikroNET
================================ */
.wrapper-article {
    width: var(--content-w);
    margin-inline: auto;
    padding-inline: calc(var(--bs-gutter-x)*.5);
}

.news-article .article-hero img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    border-radius: .75rem;
}

.news-article .lead {
    font-weight: 500;
}

.share-row .btn {
    white-space: nowrap;
}

@media print {
    .topbar, header, footer, #backToTop, #searchOverlay {
        display: none !important;
    }

    .wrapper, .content-wrapper, .wrapper-article {
        width: 100% !important;
        padding: 0 !important;
    }

    .news-article .article-hero img {
        border-radius: 0;
    }
}

/*--------------------------------
    Back to Top mikroNET
--------------------------------*/
#backToTop {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 1040;
}

    #backToTop.show {
        opacity: 1;
        pointer-events: auto;
    }

blockquote {
    position: relative;
    font-style: italic;
    color: #333;
    background: #f9f9f9;
    border-left: 6px solid #00bcd4;
    margin: 1.5em 0;
    padding: 1em 1.5em;
    border-radius: 6px;
}

/*    blockquote::before {
        content: "“";
        font-size: 3rem;
        color: #00bcd4;
        position: absolute;
        top: -10px;
        left: 10px;
        font-family: Georgia, serif;
        opacity: 0.3;
    }*/

    blockquote p {
        margin: 0;
        line-height: 1.6;
    }

    blockquote footer {
        margin-top: 0.75em;
        font-size: 0.9em;
        color: #666;
        text-align: right;
    }

        blockquote footer::before {
            content: "— ";
        }
html[data-bs-theme="dark"] blockquote {
    color: #fff;
    background: none;
    border-left: 6px solid #fff;
}
.breadcrumb {
    margin-top: 10px;
    font-size: 1rem;
}

.breadcrumb-item :hover {
    text-decoration: underline;
}

.card {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bs-tertiary-bg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .card:hover {
        transform: scale(1.03);
    }

    .card img {
        width: 100%;
        object-fit: cover;
    }

.card-title {
    padding: 12px;
    font-weight: bold;
}

/* ================================
   BUTTONS
================================ */
/* Light: brand gumbi */
html[data-bs-theme="light"] .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-dark);
    --bs-btn-hover-border-color: var(--brand-dark);
    --bs-btn-active-bg: var(--brand-dark);
    --bs-btn-active-border-color: var(--brand-dark);
    --bs-btn-disabled-bg: var(--brand);
    --bs-btn-disabled-border-color: var(--brand);
    --bs-btn-focus-shadow-rgb: 155,19,90; /* rgb for --brand */
}

html[data-bs-theme="dark"] {
    --bs-primary: #3b3f45; /* tvoja tamna primarna */
}
/* Dark: neutralni gumbi (ne koriste brand) */
html[data-bs-theme="dark"] .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #3b3f45;
    --bs-btn-border-color: #3b3f45;
    --bs-btn-hover-bg: #4a4f56;
    --bs-btn-hover-border-color: #4a4f56;
    --bs-btn-active-bg: #575d65;
    --bs-btn-active-border-color: #575d65;
    --bs-btn-disabled-bg: #2f3338;
    --bs-btn-disabled-border-color: #2f3338;
    --bs-btn-focus-shadow-rgb: 87,93,101;
}

/* Outline primary u darku */
html[data-bs-theme="dark"] .btn-outline-primary {
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-border-color: var(--bs-border-color);
    --bs-btn-hover-color: var(--bs-body-color);
    --bs-btn-hover-bg: rgba(255,255,255,.08);
    --bs-btn-hover-border-color: var(--bs-border-color);
    --bs-btn-active-bg: rgba(255,255,255,.12);
    --bs-btn-active-border-color: var(--bs-border-color);
    --bs-btn-disabled-color: var(--bs-secondary-color);
    --bs-btn-disabled-border-color: var(--bs-border-color);
    --bs-btn-focus-shadow-rgb: 222,226,230;
}

/* ================================
   DARK MODE OVERRIDES
================================ */
/* Ne diramo globalne <a>; ciljamo navigaciju, footer i side-menu */
    html[data-bs-theme="dark"] .navbar .nav-link,
    html[data-bs-theme="dark"] footer a,
    html[data-bs-theme="dark"] .side-menu .parent-link,
    html[data-bs-theme="dark"] .side-menu .submenu-link,
    html[data-bs-theme="dark"] .link-primary,
    html[data-bs-theme="dark"] .link-secondary,
    html[data-bs-theme="dark"] .text-secondary,
    html[data-bs-theme="dark"] .card-title,
    html[data-bs-theme="dark"] #cookieIcon .size {
        color: #fff !important;
    }

    html[data-bs-theme="dark"] .navbar .nav-link:hover,
    html[data-bs-theme="dark"] footer a:hover,
    html[data-bs-theme="dark"] .side-menu .parent-link:hover,
    html[data-bs-theme="dark"] .side-menu .submenu-link:hover,
    html[data-bs-theme="dark"] .link-primary:hover {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: .2em;
    }

/* side-menu header bez brand pozadine u dark modu */
html[data-bs-theme="dark"] .side-menu .menu-header {
    background: var(--bs-secondary-bg);
    color: var(--bs-emphasis-color);
}

/* Ako ti ipak treba kontrastnija tablica u darku, drži je odvojeno (nije više vezano uz side-menu) */
html[data-bs-theme="dark"] .table > :not(caption) > * > * {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

/* Dark mode: news dots bijele */
html[data-bs-theme="dark"] .news-dot {
    border-color: #fff;
}

    html[data-bs-theme="dark"] .news-dot[aria-current="true"] {
        background: #fff;
        border-color: #fff;
    }

/* LOGO swap – bez treperenja */
.navbar-brand .logo-dark {
    display: none;
}

html[data-bs-theme="dark"] .navbar-brand .logo-light {
    display: none;
}

html[data-bs-theme="dark"] .navbar-brand .logo-dark {
    display: inline-block;
}
/* =================================
   CONTENT LINKS (scoped)
   - brand u light modu
   - bijeli u dark modu
================================= */

/* LIGHT MODE — brand linkovi */
html[data-bs-theme="light"] .content a,
html[data-bs-theme="light"] .article-body a {
    color: var(--brand);
    text-decoration: none;
    text-underline-offset: .2em;
    transition: color .2s ease, text-decoration-color .2s ease;
}

    html[data-bs-theme="light"] .content a:hover,
    html[data-bs-theme="light"] .article-body a:hover {
        color: var(--brand-dark);
        text-decoration: underline;
    }
html[data-bs-theme="light"] .btn-primary a,
html[data-bs-theme="light"] .btn-primary a:hover {
    color: #fff!important;
    text-decoration: underline;
}
/*    html[data-bs-theme="light"] .content a:visited,
    html[data-bs-theme="light"] .article-body a:visited {
        color: color-mix(in oklab, var(--brand) 80%, black 20%);
    }*/

/* Fokus za pristupačnost */
.content a:focus-visible,
.article-body a:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
    border-radius: 2px;
}

/* DARK MODE — bijeli linkovi */
html[data-bs-theme="dark"] .content a,
html[data-bs-theme="dark"] .article-body a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: .2em;
    transition: color .2s ease, text-decoration-color .2s ease;
}

    html[data-bs-theme="dark"] .content a:hover,
    html[data-bs-theme="dark"] .article-body a:hover {
        color: #fff;
        text-decoration: none;
    }

    html[data-bs-theme="dark"] .content a:visited,
    html[data-bs-theme="dark"] .article-body a:visited {
        color: #eaeaea;
    }

    html[data-bs-theme="dark"] .content a:focus-visible,
    html[data-bs-theme="dark"] .article-body a:focus-visible {
        outline: 2px solid #fff;
        outline-offset: 2px;
        border-radius: 2px;
    }

/* Izuzeci: ne mijenjaj linkove koji su “gumbi” ili u navbaru/footeru */
/*.content .btn a,
.article-body .btn a,
.navbar a,
footer a,
.side-menu a {
    color: inherit;
}*/

/* ---- Document section ---- */
.document-section {
    margin-block: 2rem 1.5rem;
}

.document-title {
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--bs-emphasis-color, #0a0a0a);
}

.document-box {
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: .5rem;
    background: var(--bs-body-bg, #fff);
    padding: 1rem;
}

    .document-box .document-item + .document-item {
        border-top: 1px dashed var(--bs-border-color, #e5e7eb);
    }

.document-item {
    padding: .5rem 0;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.document-link {
    --focus-ring: rgba(13,110,253,.35);
    text-decoration: underline;
    text-underline-offset: .15em;
    word-break: break-word;
}

    .document-link:hover {
        text-decoration-thickness: 2px;
    }

    .document-link:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 .2rem var(--focus-ring);
        border-radius: .25rem;
        text-decoration: none;
    }

    .document-link[data-icon]:before {
        content: attr(data-icon);
        margin-right: .35rem;
        opacity: .85;
    }

@media (max-width: 576px) {
    .document-box {
        padding: .75rem;
    }

    .document-item {
        padding: .4rem 0;
    }
}

@media print {
    .document-box {
        border: 0;
        padding: 0;
    }

    .document-item {
        border: 0;
        padding: .25rem 0;
    }

    .document-link {
        color: #000;
        text-decoration: underline;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .document-link {
        transition: color .15s ease, text-decoration-thickness .15s ease, box-shadow .15s ease;
    }
}

/*--------------------------------
    Back to Top mikroNET
--------------------------------*/
.list-item {
    width: 100%;
    border: 1px solid var(--bs-gray-200);
    margin-bottom: 10px;
    padding: 0px;
}

    .list-item .title {
        color: var(--bs-gray-900);
        padding: 15px;
        border-bottom: 1px solid var(--bs-gray-200);
        margin-bottom: 0;
        font-size: 1.6rem;
    }

        .list-item .title:hover {
            color: var(--bs-primary);
        }

    .list-item .date {
        padding: 5px;
        top: 0;
        min-width: 150px;
        text-align: center;
        background-color: var(--bs-gray-200);
    }

    .list-item .body {
        margin-top: 10px;
        padding: 5px;
    }

    .list-item .tags {
        border-top: 1px solid var(--bs-gray-200);
        display: inline-block;
        padding: 5px;
    }

    .list-item .readmore {
        border-top: 1px solid var(--bs-gray-200);
        padding: 5px;
        bottom: 0;
        right: 15px;
        width: 150px;
        text-align: right;
        float: right;
    }

.pagin {
    margin: 10px 0px;
    width: 100%;
    text-align: center;
}

    .pagin .pagination {
        --bs-pagination-active-bg: var(--bs-primary);
        --bs-pagination-active-border-color: var(--bs-primary);
    }

.list2-item {
    width: 100%;
    border: 1px solid var(--bs-gray-200);
    margin-bottom: 30px;
    padding: 0px;
    background-color: #fff;
}

    .list2-item .title {
        color: var(--bs-gray-900);
        padding: 25px;
        margin-bottom: 0;
    }

        .list2-item .title:hover {
            color: var(--bs-primary);
        }

    .list2-item .date {
        padding: 5px;
        top: 0;
        min-width: 150px;
        text-align: center;
        background-color: var(--bs-gray-200);
    }

    .list2-item .body {
        margin-top: 10px;
        padding: 0px 25px;
    }

    .list2-item .tags {
        border-top: 1px solid var(--bs-gray-200);
        display: inline-block;
        padding: 5px;
    }

    .list2-item .readmore {
        padding: 25px;
        font-weight: 500;
    }

.listP a {
    display: block;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, text-decoration .2s ease;
}

/* Datum */
.listP .date {
    font-size: 0.85rem;
    margin-top: 2px;
    color: var(--widget-date);
}
/* Pločice za prijavu */
.login-tiles .login-card {
    display: block;
    border: 1px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: var(--bs-box-shadow-sm);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .2s ease;
}

    .login-tiles .login-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--bs-box-shadow);
    }

.login-card-head {
    background: var(--bs-tertiary-bg);
    color: var(--bs-emphasis-color);
    padding: 1rem 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.login-card-head--bottom {
    border-top: 1px solid var(--bs-border-color);
    border-bottom: 0;
}

.login-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* Dark mode prilagodbe */
html[data-bs-theme="dark"] .login-tiles .login-card {
    background: var(--bs-body-bg);
}

html[data-bs-theme="dark"] .login-card-head {
    background: var(--bs-secondary-bg);
    color: #fff;
}


.navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu .dropend:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    margin-left: .2rem;
}

/* Strelica ▼ za krovne kategorije */
.menu-caret {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* Strelica ▶ za desno kod dropend */
.caret-right {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid currentColor;
}

/* Lagani hover efekti */
.nav-link:hover,
.dropdown-item:hover {
    text-decoration: none;
    color: #0d6efd;  Bootstrap primary 
}

/* Spriječi "zatvaranje" izbornika kod prelaska */
.dropdown-menu {
    transition: opacity .12s ease-in-out;
}

.navbar .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bs-body-color) !important;
}

/* Aktivni link */
.navbar .nav-link.active {
    color: var(--brand);
    font-weight: 600;
}

/* Hover efekt */
.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
    color: var(--brand) !important;
    opacity: 0.8;
}

html[data-bs-theme="light"] .navbar .nav-link.active,
html[data-bs-theme="light"] .navbar .nav-link:hover,
html[data-bs-theme="light"] .navbar .nav-link:focus {
    color: var(--brand) !important;
}
/* aktivni u navbaru ostaju u default boji teksta */
/*.navbar .nav-link.active, .navbar .nav-link[aria-current="page"] {
    color: var(--bs-body-color) !important;
}*/
/* ================================
   NOVOSTI (horizontalni scroller)
================================ */
.news-scroller {
    display: flex;
    gap: var(--news-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .8rem;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .news-scroller::-webkit-scrollbar {
        display: none;
    }

    .news-scroller:active {
        cursor: grabbing;
    }

.news-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: calc((100% - (var(--news-gap)*2))/3);
}

@media (max-width:1199.98px) {
    .news-item {
        width: calc((100% - var(--news-gap))/2);
    }
}

@media (max-width:767.98px) {
    .news-item {
        width: 100%;
    }
}

.news-card {
    height: 100%;
    box-shadow: var(--bs-box-shadow-sm);
    transition: transform .15s ease;
}

    .news-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--bs-box-shadow);
    }

    .news-card .card-img-top {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        object-position: center;
        display: block;
        user-select: none;
        -webkit-user-drag: none;
    }

/* Dots */
.news-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: .75rem;
}

.news-dot {
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    border: 1px solid var(--brand);
    background: transparent;
    padding: 0;
}

    .news-dot[aria-current="true"] {
        background: var(--brand);
        border-color: var(--brand);
    }

.post-meta .readmore a {
    font-size: 1rem;
    text-transform: capitalize;
}

    .post-meta .readmore a:hover {
        text-decoration: underline;
    }
.post {
    padding-right: 3%;
    font-size: 1.1rem;
}
    .post p {
        font-size: 1.1rem;
        margin-bottom: 1.3rem !important;
    }
/*
    .post h2, .post h3, .post h4, .post h5 {
        color: var(--color-upit);
    }*/
    .post a {
        color: var(--color-magenta);
    }
/* ================================
   COOKIE BANNER (light & dark)
================================ */
#cookieBanner {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: min(500px, 92vw);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--bs-box-shadow-lg);
    font-family: inherit;
    z-index: 1060; /* iznad većine elemenata */
    border: 1px solid var(--bs-border-color);
}

    #cookieBanner .cookie-title {
        font-size: 1rem; /* 18px */
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--bs-emphasis-color, var(--bs-body-color));
    }

    #cookieBanner .cookie-options {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    #cookieBanner .cookie-option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--bs-tertiary-bg, var(--bs-secondary-bg));
        padding: 10px;
        border-radius: 8px;
        border: 1px solid var(--bs-border-color);
    }

        #cookieBanner .cookie-option label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .8rem;
            color: var(--bs-body-color);
            margin: 0;
        }

    /* info ikona – usklađena s temom */
    #cookieBanner .info-icon {
        background-color: var(--bs-primary-bg-subtle, rgba(13,110,253,.15));
        color: var(--bs-primary);
        border-radius: 50%;
        font-size: 12px;
        width: 18px;
        height: 18px;
        text-align: center;
        line-height: 18px;
        cursor: pointer;
        display: inline-block;
    }

    #cookieBanner .cookie-buttons {
        display: flex;
        gap: 12px;
        justify-content: flex-end;
        margin-top: 18px;
    }

.cookie-buttons div,
.cookie-buttons .button-accept,
.cookie-buttons .button-select-all {
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: .8rem;
    font-weight: 600;
}

/* gumbi */
.cookie-buttons .button-accept {
    background-color: var(--bs-primary);
    color: #fff;
}

.cookie-buttons .button-select-all {
    background-color: var(--bs-secondary, #6c757d);
    color: var(--bs-body-bg);
}

/* izbor pojedinih kategorija */
.cookie-choice {
    display: flex;
    gap: 10px;
}

    .cookie-choice .choice-option {
        display: inline-block;
        padding: 6px 12px;
        border: 1px solid var(--bs-border-color);
        border-radius: 8px;
        background-color: var(--bs-body-bg);
        cursor: pointer;
        font-size: .8rem;
        color: var(--bs-body-color);
        transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    }

        .cookie-choice .choice-option:hover {
            background-color: var(--bs-secondary-bg);
        }

        .cookie-choice .choice-option.selected {
            background-color: var(--bs-primary);
            border-color: var(--bs-primary);
            color: #fff;
        }

        .cookie-choice .choice-option.disabled {
            background-color: var(--bs-tertiary-bg, var(--bs-secondary-bg));
            color: var(--bs-secondary-color);
            cursor: not-allowed;
            pointer-events: none;
        }

/* fokus stanja radi pristupačnosti */
#cookieBanner .choice-option:focus,
.cookie-buttons .button-accept:focus,
.cookie-buttons .button-select-all:focus,
#cookieBanner .info-icon:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

/* ================================
   COOKIE ICON (launcher)
================================ */
#cookieIcon {
    position: fixed;
    bottom: 40px;
    right: 80px;
    z-index: 1059;
    cursor: pointer;
    text-align: center;
    color: var(--brand, var(--bs-primary));
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 50%;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
    box-shadow: var(--bs-box-shadow-sm);
    animation: cookieFloat 2s linear infinite alternate;
}

    #cookieIcon .size {
        font-size: 1.3rem;
        color: var(--bs-primary);
    }

    #cookieIcon:hover .size {
        color: var(--bs-primary-text-emphasis, var(--bs-primary));
    }

    #cookieIcon:hover {
        transform: translateY(-2px);
    }

/* animacija */
@keyframes cookieFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-3px);
    }
}

/* ================================
   Dark mode fine-tuning (opcionalno)
   (Bootstrap već postavlja varijable,
    ovdje samo nijansiramo po želji)
================================ */
html[data-bs-theme="dark"] #cookieBanner .cookie-option {
    background-color: var(--bs-tertiary-bg, #1f1f1f);
}

html[data-bs-theme="dark"] #cookieIcon {
    background: var(--bs-body-bg);
    border-color: var(--bs-border-color);
}

/* responsive položaj na manjim ekranima */
@media (max-width: 575.98px) {
    #cookieBanner {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 12px;
        padding: 16px;
    }

    #cookieIcon {
        right: 16px;
        bottom: 60px;
    }
}

/*--------------------------------
    Widget mikroNET (Light & Dark)
--------------------------------*/
:root {
    /* Neutral (light tema) */
    --neutral-bg: #f4f2f2;
    --neutral-border: #e7e3e6;
    --neutral-text: #333;
    /* Osnovne po-temske varijable */
    --widget-bg: #fff;
    --widget-border: var(--bs-border-color); /* bootstrap var */
    --widget-title-brand-bg: var(--brand);
    --widget-title-neutral-bg: var(--neutral-bg);
    --widget-title-neutral-fg: var(--neutral-text);
    --widget-hover-brand: #f8f3f7;
    --widget-hover-neutral: #faf9fa;
    --widget-text: var(--bs-body-color);
    --widget-date: #666;
}

/* Dark overrides */
html[data-bs-theme="dark"] {
    /* površine */
    --widget-bg: var(--bs-body-bg); /* koristi temski body-bg u darku */
    --widget-border: var(--bs-border-color);
    --widget-text: var(--bs-body-color);
    /* naslov: brand ostaje brand; neutral ide na sekundarnu tamnu */
    --widget-title-neutral-bg: var(--bs-secondary-bg);
    --widget-title-neutral-fg: var(--bs-secondary-color);
    /* hover pozadine – tamnije nijanse */
    --widget-hover-brand: rgba(255, 255, 255, 0.04);
    --widget-hover-neutral: rgba(255, 255, 255, 0.04);
    /* datum – svjetliji sivi u darku */
    --widget-date: #b5b5b5;
}

/* ----------------------------
   Osnovni widget
----------------------------- */
.widget {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--widget-bg);
    color: var(--widget-text);
}

    /* Naslov (default – koristi brand; varijante niže ga prepišu) */
    .widget .title {
        font-size: 1rem;
        font-weight: 600;
        padding: 12px 16px;
        border-radius: 12px 12px 0 0;
        margin: 0; /* ako je hX */
        background: var(--widget-title-brand-bg);
        color: #fff;
    }

    .widget p {
        padding: 0.5rem;
        margin: 0;
    }

    /* Područje liste (radi i za <ul> i za div-ove) */
    .widget .list,
    .widget ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* Stavka vijesti – radi i za .news-item i za li */
    .widget .news-item,
    .widget li {
        padding: 12px 16px;
        line-height: 1.35;
        border-top: 1px solid var(--widget-border);
        background: transparent;
    }

        .widget .news-item:first-child,
        .widget li:first-child {
            border-top: 0;
        }

    /* Link preko cijele širine */
    .widget a {
        display: block;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color .2s ease, background-color .2s ease, text-decoration .2s ease;
    }

    /* Datum */
    .widget .date {
        font-size: 0.85rem;
        margin-top: 2px;
        color: var(--widget-date);
    }

    /* ----------------------------
   Brand varijanta
----------------------------- */
    .widget.brand .title {
        background: var(--brand);
        color: #fff;
    }

    .widget.brand a {
        color: var(--brand);
    }

        .widget.brand a:hover {
            color: var(--brand-dark);
            text-decoration: underline;
        }

    /* Hover pozadina preko cijele širine */
    .widget.brand .news-item:hover,
    .widget.brand li:hover {
        background: var(--widget-hover-brand);
    }

    /* Datum blago u brand paleti (ostaje temski u darku jer --widget-date override-a) */
    .widget.brand .date {
        color: var(--brand-light);
    }

html[data-bs-theme="dark"] .widget.brand .date {
    color: var(--widget-date);
}

/* ----------------------------
   Neutral varijanta
----------------------------- */
.widget.neutral .title {
    background: var(--widget-title-neutral-bg);
    color: var(--widget-title-neutral-fg);
}

.widget.neutral a {
    color: var(--widget-text);
}

    .widget.neutral a:hover {
        color: var(--brand);
        text-decoration: underline;
    }

.widget.neutral .news-item,
.widget.neutral li {
    background: var(--widget-bg);
}

    .widget.neutral .news-item:hover,
    .widget.neutral li:hover {
        background: var(--widget-hover-neutral);
    }

.widget.neutral .date {
    color: var(--widget-date);
}

/* ----------------------------
   Sticky (HTML kontrolirano)
----------------------------- */
@media (min-width: 992px) {
    .widget[data-sticky="on"] {
        position: sticky;
        top: var(--side-sticky-top, 1rem);
    }
}

@media (max-width:991.98px) {
    .widget {
        position: static;
    }
}

/* ================================
   SEARCH OVERLAY mikroNET
================================ */
.searchOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(2px);
}

    .searchOverlay.open {
        display: block;
    }

    .searchOverlay .closebtn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        line-height: 1;
        background: transparent;
        border: 0;
        color: #fff;
    }

    .searchOverlay .so-content {
        background: var(--bs-body-bg);
        color: var(--bs-body-color);
        width: min(720px,92vw);
        margin: 12vh auto 0;
        border-radius: .75rem;
        padding: 2rem 1.5rem;
        box-shadow: var(--bs-box-shadow-lg);
    }

    .searchOverlay .so-title {
        margin-bottom: 1rem;
    }

    .searchOverlay form {
        display: flex;
        gap: .75rem;
        align-items: center;
    }

        .searchOverlay form input[type="text"] {
            flex: 1 1 auto;
            height: 46px;
            padding-inline: .75rem;
            border: 1px solid var(--bs-border-color);
            border-radius: .5rem;
            background: var(--bs-body-bg);
            color: var(--bs-body-color);
        }

        .searchOverlay form .btn.blue {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            height: 46px;
            border-radius: .5rem;
            border: 0;
            background: var(--bs-primary);
            color: #fff;
            padding: 0 1rem;
        }

            .searchOverlay form .btn.blue span {
                line-height: 1;
            }
    /* sakrij overlay kada je aria-hidden=true */
    .searchOverlay[aria-hidden="true"] {
        display: none;
    }

    /* layout forme: input u svom redu, ispod blok s gumbima */
    .searchOverlay .search-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px;
    }

    .searchOverlay .search-input {
        width: 100%;
        display: block;
        box-sizing: border-box;
        padding: 10px;
        font-size: 16px;
    }

    /* gumbi ispod inputa, međusobno u istom redu */
    .searchOverlay .search-buttons {
        display: flex;
        gap: 10px;
    }

        .searchOverlay .search-buttons .btn {
            flex: 1 1 0;
        }

    /* hint poruka (nije obavezno) */
    .searchOverlay .help-text {
        font-size: 0.875rem;
        line-height: 1.2;
        min-height: 1em;
        opacity: .85;
    }
/*--------------------------------
    Service box mikroNET
--------------------------------*/
.services-box {
    margin-bottom: 48px
}

    .services-box h2 {
        padding-top: 0px;
    }

    .services-box a h2 {
        color: var(--bs-gray-900);
    }

    .services-box a:hover h2 {
        color: var(--bs-primary);
    }

    .services-box .pull-left {
        float: left !important;
    }

    .services-box .readmore {
        float: right;
    }

        .services-box .readmore a {
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 500;
        }

            .services-box .readmore a::before {
                font-family: FontAwesome;
                content: "";
                margin-right: 4px;
            }

    .services-box .media-body {
        display: table-cell;
        vertical-align: top;
    }

    .services-box .media-body {
        padding: 30px;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        position: relative
    }

        .services-box .media-body::before {
            left: 0;
            top: 0
        }

        .services-box .media-body::after {
            right: 0;
            bottom: 0
        }

        .services-box .media-body::before, .services-box .media-body::after {
            position: absolute;
            content: "";
            background: #eee;
            width: 1px;
            height: 60px
        }

    .services-box span em.fa::before {
        border-radius: 2px;
        speak: none;
        display: block;
        -webkit-font-smoothing: subpixel-antialiased !important;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden
    }

    .services-box span em.fa::after {
        pointer-events: none;
        position: absolute;
        width: 100%;
        height: 100%;
        content: '';
        display: none;
        box-sizing: content-box
    }

    .services-box em.fa {
        width: 40px;
        height: 40px;
        color: #000;
        overflow: hidden;
        font-size: 24px;
        text-align: center;
        line-height: 40px;
        border-bottom: 1px solid #eee;
        margin: 0;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s
    }

        .services-box em.fa:hover {
            color: #00a0e3;
            cursor: pointer
        }

/* ================================
   SIDE MENU mikroNET
================================ */
.side-menu .menu-card {
    background: var(--bs-body-bg);
    border-radius: 1rem;
}

.side-menu .menu-header {
    background: var(--brand);
    color: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

/* items */
.side-menu .list-group-item {
    border: 0;
    border-bottom: 1px solid var(--bs-border-color);
    background: transparent;
}

    .side-menu .list-group-item:last-child {
        border-bottom: 0;
    }

.side-menu .parent-link,
.side-menu .submenu-link {
    color: var(--bs-body-color) !important;
}

    .side-menu .parent-link:hover,
    .side-menu .submenu-link:hover {
        color: var(--brand) !important;
    }

/* active (light = brand; dark = white) */
html[data-bs-theme="light"] .side-menu .parent-active .parent-link,
html[data-bs-theme="light"] .side-menu .parent-active > .d-flex > .parent-link,
html[data-bs-theme="light"] .side-menu a[aria-current="page"] {
    color: var(--brand) !important;
}

html[data-bs-theme="dark"] .side-menu .parent-active .parent-link,
html[data-bs-theme="dark"] .side-menu .parent-active > .d-flex > .parent-link,
html[data-bs-theme="dark"] .side-menu a[aria-current="page"] {
    color: #fff !important;
}

/* chevron + rotate on open */
.side-menu .submenu-toggle {
    color: var(--bs-secondary-color);
}

    .side-menu .submenu-toggle i {
        transition: transform .2s ease;
    }

    .side-menu .submenu-toggle[aria-expanded="true"] i {
        transform: rotate(90deg);
    }

/* collapse */
.side-menu .submenu {
    display: none;
}

    .side-menu .submenu.show {
        display: block;
    }

/* sticky on desktop */
/* sticky se pali samo kad napišeš data-sticky="on" na HTML-u */
@media (min-width: 992px) {
    .side-menu[data-sticky="on"] {
        position: sticky;
        top: var(--side-sticky-top, 1rem); /* možeš podesiti kroz inline varijablu */
    }
}

@media (max-width:991.98px) {
    .side-menu {
        position: static;
    }
}

.notification {
    /* border-bottom: 1px solid;
    position: relative;
    border-left: 1px solid;
    padding: 0px;
    margin: 15px 0px 15px 0px;
    background-repeat: no-repeat !important;
    background-position: 10px 11px;
    font-size: inherit;
    border-top: 1px solid;
    border-right: 1px solid;*/
    position: fixed;
    top: 2%;
    right: 2%;
    padding: 10px;
    font-family: Arial;
    border: 1px solid #fc0;
    width: 50%;
    z-index: 100;
}

.attention {
    BORDER-BOTTOM-COLOR: #e6db55;
    BORDER-TOP-COLOR: #e6db55;
    BACKGROUND: #fffbcc no-repeat 10px 11px;
    COLOR: #666452;
    BORDER-RIGHT-COLOR: #e6db55;
    BORDER-LEFT-COLOR: #e6db55
}

.information {
    BORDER-BOTTOM-COLOR: #a2b4ee;
    BORDER-TOP-COLOR: #a2b4ee;
    BACKGROUND: #dbe3ff no-repeat 10px 11px;
    COLOR: #585b66;
    BORDER-RIGHT-COLOR: #a2b4ee;
    BORDER-LEFT-COLOR: #a2b4ee
}

.success {
    BORDER-BOTTOM-COLOR: #9adf8f;
    BORDER-TOP-COLOR: #9adf8f;
    BACKGROUND: #d5ffce no-repeat 10px 11px;
    COLOR: #556652;
    BORDER-RIGHT-COLOR: #9adf8f;
    BORDER-LEFT-COLOR: #9adf8f
}

.error {
    BORDER-BOTTOM-COLOR: #df8f8f;
    BORDER-TOP-COLOR: #df8f8f;
    BACKGROUND: #ffcece no-repeat 10px 11px;
    COLOR: #665252;
    BORDER-RIGHT-COLOR: #df8f8f;
    BORDER-LEFT-COLOR: #df8f8f
}

.notification DIV {
    margin: 0px;
    padding-bottom: 10px;
    line-height: 1.5em;
    font-style: normal;
    padding-left: 36px;
    padding-right: 10px;
    display: block;
    padding-top: 10px;
}

.notification .close {
    POSITION: absolute;
    COLOR: #990000;
    FONT-SIZE: 9px;
    TOP: 5px;
    RIGHT: 5px
}

.input-notification {
    PADDING-BOTTOM: 2px;
    BACKGROUND-COLOR: transparent;
    MARGIN: 0px 0px 0px 5px;
    PADDING-LEFT: 22px;
    PADDING-RIGHT: 0px;
    BACKGROUND-REPEAT: no-repeat;
    BACKGROUND-POSITION: left 2px;
    PADDING-TOP: 2px
}


.col-form-label, .mikro-caption {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
    font-weight: 500;
    display: inline-block;
}

.dxcaControl {
    /*font: 12px Tahoma, Geneva, sans-serif;*/
    font: inherit;
}

.dxigControl td.dxigCtrl {
    padding: 12px 0px;
}
.dxisControl .dxis-nbDotsBottom {
    padding: 0;
    margin-top: -25px;
}
.btnDefault {
    background-color: var(--bs-primary);
}

.btnZeleni {
    background-color: #008d4c;
}

.btnNaranca {
    background-color: #f56954;
}

.dxbs-pager .pagination > li.active > a {
    color: #fff;
}

.imageSlider {
    width: 100%;
    height: 40%;
}



input[type="radio"], input[type="checkbox"] {
    margin-right: 10px;
}
.custom-radiobutton-list {
    list-style: none; 
    padding: 0;
    margin: 10px;
}

    .custom-radiobutton-list li {
        margin-bottom: 10px; 
    }

    .custom-radiobutton-list input[type="radio"] {
        margin-right: 10px; 
    }

    .custom-radiobutton-list label {
        font-size: 16px; 
        color: #333; 
        cursor: pointer; 
    }

    .custom-radiobutton-list input[type="radio"]:checked + label {
        font-weight: bold; 
    }

.table-tools {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.sort-header {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}

.sort-indicator {
    opacity: .7;
}
.smart-search-clear {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 18px;
    line-height: 1;
    color: #999;
    cursor: pointer;
}

    .smart-search-clear:hover {
        color: #000;
    }

.sort-header {
    all: unset;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 768px) {
    .responsive-card-table thead {
        display: none;
    }

    .responsive-card-table,
    .responsive-card-table tbody,
    .responsive-card-table tr,
    .responsive-card-table td {
        display: block;
        width: 100%;
    }

        .responsive-card-table tr {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            background: #fff;
            padding: 10px;
        }

        .responsive-card-table td {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            padding: 8px 10px;
            border: 0;
            border-bottom: 1px solid #eee;
            text-align: right;
        }

            .responsive-card-table td:last-child {
                border-bottom: 0;
            }

            .responsive-card-table td::before {
                content: attr(data-label);
                font-weight: 600;
                text-align: left;
                color: #555;
            }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    /* IE10+ specific styles go here */
    body {
        font-family: Tahoma;
    }

    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9 {
        padding: 10px !important;
    }
}

/*Small devices (landscape phones, 576px and up)*/
/*@media (max-width: 375px) {
    .imageSlider {
        width: 100% !important;
        height: 120px !important;
    }
}

@media (max-width: 425px) {
    #LogoImage {
        width: 200px;
        height: auto;
    }

    .post iframe, .lista iframe {
        height: 230px;
    }

    .imageSlider {
        width: 100% !important;
        height: 130px !important;
    }

    .full {
        width: 100%;
        padding: 10px;
    }

    .services-box .media-body {
        display: block;
    }*/
    /*    p {
        font-size: 1.1rem;
    }*/
    /*.container {
        width: 100%
    }

    .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9 {
        width: 100%
    }

    .borderTop {
        padding: 10px;
        text-align: center;
    }

    .featured-content {
        padding: 0px 10px;
        border-right: none;
    }

    .backtop {
        bottom: 20px;
        right: 20px !important;
    }

    .widget{
        margin-top: 25px;
    }
    .widget:last-child {
        margin-bottom: 50px;
    }

    .footer-wrapper {
        margin-top: 10px;
    }

        .footer-wrapper span {
            display: block;
            padding: 10px 0px;
            text-align: center;
            margin: 0px;
        }

        .footer-wrapper ul {
            padding: 10px 0px;
            text-align: center;
        }

    .widget:last-child {
        margin-bottom: 5px;
    }

    .timeline .event {
        width: 95%;
    }

        .timeline .event:nth-child(2n-1):before {
            display: none;
        }

        .timeline .event:nth-child(2n-1):after {
            display: none;
        }

        .timeline .event:nth-child(2n) .post-header-meta:before {
            display: none;
        }

        .timeline .event:nth-child(2n) .post-header-meta:after {
            display: none;
        }

        .timeline .event:nth-child(2n-1) .post-header-meta:before {
            display: none;
        }

        .timeline .event:nth-child(2n-1) .post-header-meta:after {
            display: none;
        }

    .btn-hotline{
        margin-bottom: 5px;
    }
    #cookieBanner{
        width: 100%;
        right: 3px;
    }
}
@media (max-width: 576px) {
    #cookieBanner {
        max-width: 98vw !important;
        padding: 1rem !important;
    }
}*/
    /*Medium devices (tablets, 768px and up)*/
/*@media (min-width: 768px) {
    .post iframe, .lista iframe {
        height: 300px;
    }
    .imageSlider {
        width: 100% !important;
        height: 300px !important;
    }
}

@media (max-width: 768px) {

    blockquote {
        padding: 15px;
        line-height: 1.6em;
        font-size: 1.2em;
    }

    .nav-item .dropdown-menu {
        --bs-dropdown-font-size: 1.2rem;
        display: inline;
        border: none;
    }

    .dropdown-item {
        white-space: normal;
    }

    .backtop {
        right: 35px;
    }

    .page-wrapper {
        margin: 0px;
        padding: 0px;
        width: 100%;
    }
}*/
/*Large devices (desktops, 992px and up)*/
/*@media (min-width: 992px) {
    .post iframe, .lista iframe {
        height: 400px;
    }

    .imageSlider {
        width: 100% !important;
        height: 400px !important;
    }

    .backtop {
        right: 45px;
    }

    .page-wrapper {
        margin: 20px auto;
        padding: 25px 0 0;
        width: 95%;
    }
}*/

    /*Extra large devices (large desktops, 1200px and up)*/
/*@media (min-width: 1200px) {
    .backtop {
        right: 275px;
    }

    .imageSlider {
        width: 100% !important;
        height: 550px !important;
    }

    .page-wrapper {
        margin: 40px auto;
        padding: 50px 0 0;
        width: 90%;
    }
}*/

@media print {
    body, html {
        color: #000;
        background: #fff;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    nav, aside, header, footer, #cookieIcon, #share {
        display: none !important;
    }

    .container, .inner-wrapper, .post {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    section, article {
        margin: 0 !important;
        padding: 0 !important;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }

    a[href^="javascript:"],
    a[href^="#"] {
        text-decoration: none;
        color: black;
    }

        a[href^="javascript:"]::after,
        a[href^="#"]::after {
            content: "";
        }
}
