﻿
:root {
    --primary-color: #26418f;
    --secondary-color: #5b9bd5;
    --accent-color: #76b82a;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --text-color: #212121;
    --glavna-plava: #2c5aa0;
}

/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}*/


element {
}

*, ::before, ::after {
    box-sizing: border-box;
}

/*sklanja strelice(gore dole) sa input number polja*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/*
Source - https://stackoverflow.com/a
Posted by Jamie, modified by community. See post 'Timeline' for change history
Retrieved 2025-11-17, License - CC BY-SA 4.0
*/

/*input[type='radio']:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -4px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

input[type='radio']:checked:after {
    width: 13px;
    height: 13px;
    border-radius: 15px;
    top: -5px;
    left: 0px;
    position: relative;
    background-color: var(--glavna-plava);
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}*/

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.k-button-md {
    margin: 5px 5px 5px 5px;
}

.font-medium {
    margin: 15px 5px 5px 5px;
}

.row-checked {
    background-color: #E8F5E9; /* primer – svetlo zelena */
}

.k-table .k-table-row.row-checked .k-table-td {
    background-color: inherit;
}


.highlighted-row {
    background-color: lightgreen !important;
}

app {
    display: block;
    max-width: 1600px;
    margin: 0 auto;
    border: 1px solid var(--light-gray);
}

.edit-popup {
    position: fixed !important;
    transform: translate(-50%,-50%);
    z-index: 1050;
}

.popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1040;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}*/

/* Header */
.top-bar {
    /*  background-color: var(--primary-color);*/
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    /*border-bottom: 2px solid var(--accent-color);*/
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.top-links {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
    width: 40%;
}

    .social-links a {
        opacity: 0.85;
        transition: opacity 0.2s;
    }

        .social-links a:hover {
            opacity: 1;
        }

.header-main {
    position: relative;
    height: 300px;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
    background-image: url('/img/1200_400.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .header-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
    }

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateX(-6.5rem);
    min-width: 35rem;
   /* padding:15px;*/
}

    .logo-container img {
        height: 80px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
       
    }

.site-title {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--secondary-color);
    padding-left: 20px;
}

    .site-title h1 {
        font-size: 26px;
        font-weight: 700;
        color: white;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .site-title span {
        font-size: 18px;
        color: white;
        font-weight: 500;
    }

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.contact-info-header {
    font-size: 14px;
    color: var(--dark-gray);
    display: flex;
    gap: 20px;
}

    .contact-info-header span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

.search-bar {
    position: relative;
    width: 320px;
}

    .search-bar input {
        width: 100%;
        padding: 12px 40px 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 15px;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

        .search-bar input:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(91, 155, 213, 0.2);
        }

    .search-bar button {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        color: var(--primary-color);
        padding: 8px;
    }

/* Navigation */
.main-nav {
    /* background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); */
    position: relative;
}

    .main-nav::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background-color: var(--accent-color);
    }

.nav-list {
    display: flex;
    list-style: none;
    height: 52px;
}

    .nav-list li {
        position: relative;
        display: flex;
        align-items: stretch;
    }

    .nav-list a {
        display: flex;
        align-items: center;
        color: white;
        text-decoration: none;
        padding: 0 22px;
        font-weight: 500;
        transition: background-color 0.3s;
        position: relative;
    }

    .nav-list > li > a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 70%;
        height: 4px;
        background-color: white;
        transition: transform 0.3s;
    }

    .nav-list > li:hover > a::after {
        transform: translateX(-50%) scaleX(1);
    }

    .nav-list a:hover,
    .nav-list a:focus {
        background-color: rgba(255, 255, 255, 0.1);
    }



/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    background-image: url('/img/1200_400.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}
/*
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

    .btn:hover {
        background-color: #659b20;
    }*/

/* Features Section */
.features {
    padding: 60px 0;
   /* background-color: var(--light-gray);*/
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

    .section-header h2 {
        font-size: 32px;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 18px;
        color: var(--dark-gray);
        max-width: 700px;
        margin: 0 auto;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

    .feature-card .k-icon {
        float: right;
        opacity: 0.3;
        color: darkblue;
    }

    .feature-card:hover {
        transform: translateY(-3px);
    }

    .feature-card img {
        width: 100%;
        height: 200px;
    }

.feature-content {
    padding: 25px;
}

    .feature-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .feature-content p {
        margin-bottom: 20px;
    }

/* News Section */
.news {
    padding: 60px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

    /*    .news-card:hover {
        transform: translateY(-5px);
    }*/

    .news-card img {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.news-content p {
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Quick Links */
.quick-links {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

    .link-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .link-card i {
        font-size: 40px;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .link-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .link-card p {
        margin-bottom: 20px;
        font-size: 16px;
    }

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: white;
    padding-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-column h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: var(--accent-color);
    }

.footer-links {
    list-style: none;
}


.k-grid a.file-link {
    color: #2563eb !important;
    text-decoration: underline;
}

    .k-grid a.file-link:hover {
        color: #1d4ed8 !important;
    }

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-links a:hover {
        color: white;
    }

.contact-info {
    margin-bottom: 20px;
}

    .contact-info p {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.newsletter form {
    display: flex;
    margin-top: 15px;
}

.newsletter input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter button {
    padding: 10px 15px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.bottom-footer {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Accessibility enhancements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

    .skip-link:focus {
        top: 0;
    }

/* Media Queries */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        gap: 20px;

    }

    .search-bar {
        width: 100%;
    }

    /* .nav-list {
        flex-direction: column;
    }*/


}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        height: 300px;
    }

        .hero h2 {
            font-size: 28px;
        }

    .feature-card, .news-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Icon placeholders */
.icon-placeholder {
    display: inline-block;
    min-width: 24px;
    height: 24px;
    /*background-color: currentColor;*/
    border-radius: 50%;
    /* margin-right: 5px;*/
}



h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}


input.is-required {
    border-left: 4px solid #dc3545; /* Optional visual cue */
}

.mn-text-area {
    resize: none;
    width: 100%;
    border-radius: 5px;
    padding: 5px;
    border: #dfe3e7 solid 1px;
    margin-top: 10px;
}

.mn-input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.mn-licenca-input-group {
    display: grid;
    grid-template-columns: 200px 400px 200px;
    width: 100%;
    gap: 10px;
}

.mn-header {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.mn-pagination-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    gap: 5px;
    background: lightgray;
    border-radius: 10px;
    margin-top: 5px;
    position: relative;
}

.mn-pagination-button {
    border: 1px solid lightgray;
    border-radius: 5px;
    color: whitesmoke;
    background-color: #2d408e;
    font-size: 1.1rem;
}

.mn-disabled {
    opacity: 0.6;
}

.mn-broj-po-stranici {
    position: absolute;
    right: 2%;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mn-gray-background {
    position: fixed;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.mn-info-popup {
    padding-bottom: 5%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    height: auto;
    background: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mn-info-popup-header {
    height: 2rem;
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

    .mn-info-popup-header.success {
        background-color: green;
    }

    .mn-info-popup-header.info {
        background-color: deepskyblue;
    }

    .mn-info-popup-header.warning {
        background-color: orange;
    }

    .mn-info-popup-header.failure {
        background-color: red;
    }

.mn-popup-action-buttons {
    margin-top: 1rem;
}

.mn-form-buttons-container {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: end;
    gap: 1rem;
    margin-bottom: 10px;
    padding-right: 5px;
}

.imputPolje {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 0.75rem;
}


@media (min-width: 768px) {
    .imputPolje {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.mn-info-popup-text {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding: 5px;
    text-align: center;
}

.mn-grid-header {
    display: flex;
    align-items: center;
    gap: 5px;
}

.k-window-md {
    width: 800px;
    max-height: 80vh;
}

.mn-toggle-jezici {
    margin-bottom: 5px;
}

.mn-dogadjaj-opis-section {
    display: flex;
    flex-direction: column;
}

.mn-dogadjaj-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mn-detail-template-container {
    max-height: 400px;
    overflow-y: scroll;
}


.vest-slika {
    object-fit: contain;
    /*    object-position: 0% 0%;*/
}

.mn-form-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid;
}

.mn-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mn-flex-align-center {
    display: flex !important;
    align-items: center;
    width: 100%;
}

.mn-margin-left-auto {
    margin-left: auto;
}

.mn-inzenjeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.mn-inzenjer-card {
    padding: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    border: 1px solid lightgray;
    position: relative;
}

.mn-close-x {
    position: absolute !important;
    top: 5px;
    right: 5px;
    color: red;
    height: 24px !important;
    width: 24px !important;
    cursor: pointer;
}

.mn-green-plus {
    color: green;
    height: 24px !important;
    width: 24px !important;
}

.popup-anchor {
    position: fixed;
    width: 1px;
    height: 1px;
    left: 50%;
    top: 50%;
    /*    transform: translate(-50%, -50%);*/
    /* Bitno: Nema z-index: -1 */
    opacity: 0; /* nevidljiv */
    pointer-events: none; /* ne smeta kliku */
}

.mn-100 {
    width: 100% !important;
    height: 100% !important;
}

.k-picker-solid {
    background-color: transparent !important;
}

.mn-loader {
    position: fixed !important;
}



/* up to version 3.5.0 */
.k-popup.k-reset,
/* from version 3.6.0 */
.k-child-animation-container {
    transition: none !important;
    /* to make dropdown animations faster use the following style INSTEAD */
    /* transition-duration: 100ms !important; */
}



.k-grid th {
    justify-content: center;
    text-align: center;
    white-space: normal;
    vertical-align: middle;
}

    .k-grid th .k-column-title {
        white-space: normal;
        overflow-wrap: anywhere;
    }

.align {
    align-content: end;
}

.divCtr {
    margin: 0 auto;
}

.mn-kgh-section {
    padding: 5px;
    border-bottom: 1px solid lightgray;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mn-pasos-img {
    width: 350px;
}

.mn-mere-img {
    max-width: 1000px;
    max-height: 650px;
}

.filter-popup {
    background-color: white;
    height: auto !important;
    margin: 40px;
}

.k-button-solid-base.potvrdi {
    background-color: green;
    color: white;
    height: 3rem;
}

.k-button-solid-base.odustani {
    background-color: #FF4C4C;
    color: white;
    height: 3rem;
}

.k-datepicker input {
    width: 150px !important; /* Example for the input field */
}

.bell-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    /*    width: 30px;
    height: 30px;
    padding-top: 20%;*/
}

.k-svg-icon.large-icon {
    width: 20px;
    height: 20px;
}

/* Default grey bell */
.grey {
    color: lightgray;
}

/* Red bell for active alarms */
.white {
    color: white;
}

/* Blinking animation */
.blink {
    animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
    50% {
        opacity: 0.3;
    }
}

/*.k-button-icon.k-icon.k-svg-icon.k-svg-i-check {
    background-color: #0d6efd;
    color: white;
    width: 32px;
    height: 32px;
    padding: 7px;
    border-radius: 5px;
}*/

.line-container {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

    .line-container::before,
    .line-container::after {
        content: "";
        flex: 1;
        border-bottom: 2px solid #3b539a;
    }

    .line-container::before {
        margin-right: 10px;
    }

    .line-container::after {
        margin-left: 10px;
    }

.line-text {
    white-space: nowrap;
    color: #3b539a;
    font-weight: bold;
    margin-bottom: 0.5rem;
}



.show-all-container {
    text-align: center;
    margin-top: 10px;
}

    .show-all-container a {
        font-weight: bold;
        color: #0078d4;
        text-decoration: none;
    }

        .show-all-container a:hover {
            text-decoration: underline;
        }

.mn-filteri-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vW;
    height: 100vH;
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.mn-filteri {
    height: 100%;
    width: 45%;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.mn-filteri-gray {
    width: 55%;
}

.mn-filteri-grid {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mn-filteri-grid-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #e8f0fe;
    color: var(--glavna-plava);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.mn-filter-grid-close {
    cursor: pointer;
    font-weight: bold;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.mn-nevalidan-element {
    color: red;
}

.mn-progress-bar {
    height: 2rem !important;
    font-size: 1rem !important;
    margin-bottom: 1.5rem;
}

    .mn-progress-bar.k-progressbar .k-selected {
        background-color: var(--glavna-plava) !important;
    }

.mn-readonly-radio {
    pointer-events: none; /* Prevent clicking */
    opacity: 1; /* Keep full visibility */
}

.k-window {
    max-width: 80%;
}

.mn-tehnicki-sistemi-info-button {
    height: 24px;
    width: 24px;
    margin: 0;
    background-color: #7cd4f1;
}

.bell-container {
    position: relative;
    display: inline-block;
    margin-left: 2rem;
    cursor: pointer;
    /*    width: 30px;
    height: 30px;
    padding-top: 20%;*/
}

.k-svg-icon.large-icon {
    width: 20px;
    height: 20px;
}

/* Default grey bell */
.grey {
    color: lightgray;
}

/* Red bell for active alarms */
.white {
    color: white;
}

/* Blinking animation */
.blink {
    animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
    50% {
        opacity: 0.3;
    }
}

/*.k-button-icon.k-icon.k-svg-icon.k-svg-i-check {
    background-color: #0d6efd;
    color: white;
    width: 32px;
    height: 32px;
    padding: 7px;
    border-radius: 5px;
}*/

.line-container {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

    .line-container::before,
    .line-container::after {
        content: "";
        flex: 1;
        border-bottom: 2px solid #3b539a;
    }

    .line-container::before {
        margin-right: 10px;
    }

    .line-container::after {
        margin-left: 10px;
    }

.line-text {
    white-space: nowrap;
    color: #3b539a;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.show-all-container {
    text-align: center;
    margin-top: 10px;
}

    .show-all-container a {
        font-weight: bold;
        color: #0078d4;
        text-decoration: none;
    }

        .show-all-container a:hover {
            text-decoration: underline;
        }

.text-row {
    display: flex;
    justify-content: space-between;
}

}

.mn-input-date {
    width: 200px !important;
}

.disabled-container input,
.disabled-container textarea,
.disabled-container select {
    pointer-events: none;
    opacity: 0.5;
}

/* Export dugmad, excel i pdf*/
.k-grid-toolbar .btn-export {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .9rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid transparent;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

    .k-grid-toolbar .btn-export .k-svg-icon {
        width: 18px;
        height: 18px;
    }

/* Excel – teget */
.k-grid-toolbar .btn-excel {
    background: #2c5aa0;
    border-color: #2c5aa0;
    color: #fff;
}

    .k-grid-toolbar .btn-excel:hover {
        background: #1b8b41;
    }

/* PDF – zelena */
.k-grid-toolbar .btn-pdf {
    background: #74b529;
    border-color: #74b529;
    color: #fff;
}

/*  .k-grid-toolbar .btn-pdf:hover {
        background: #c62828;
    }*/

/*Tipski izvestaji lista*/
.tipski-izvestaji {
    max-width: 980px;
    margin: 24px auto 48px;
    padding: 0 12px;
    font-size: 16px;
}

/* “traka” sa naslovom + strelica */
.ti-title h3 {
    display: inline-block;
    margin: 0 0 14px 0;
    padding: 10px 18px;
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--glavna-plava) 0%, #1e3a5f 100%);
    color: white;
    border: none;
    border-radius: 6px;
    position: relative;
    width: max-content;
}

    .ti-title h3::after {
        content: "";
        position: absolute;
        top: 2px;
        right: -12px;
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 12px solid #d9e7f3;
    }

/* panel */
.ti-panel {
    border: 1px solid #c9d4e1;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(16,24,40,.04);
    margin: 0 10px 0 10px;
}

.ti-panel-head {
    background: linear-gradient(135deg, var(--glavna-plava) 0%, #1e3a5f 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    font-weight: 600;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.ti-panel-body {
    padding: 8px 10px 2px;
}

/* lista linkova */
.ti-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .ti-link-list li {
        border-bottom: 1px solid #e7eef6;
    }

        .ti-link-list li:last-child {
            border-bottom: 0;
        }

    .ti-link-list a {
        display: block;
        padding: 10px 8px;
        color: #2a5db0;
        text-decoration: none;
    }

        .ti-link-list a:hover {
            background: #f2f7ff;
            text-decoration: underline;
        }


.tipski-izvestaji {
    max-width: none;
    width: 100%;
    margin: 24px 10px 48px 10px;
    padding-left: 0;
}

.ti-title h3 {
    display: block;
}


.ti-panel {
    margin-left: 0;
}

.table-like-header .th {
    background: linear-gradient(135deg, var(--glavna-plava) 0%, #1e3a5f 100%);
    color: white;
    border: 1px solid #d6dde6;
    border-radius: .35rem;
    padding: .6rem .9rem;
    font-weight: 600;
}

/* PDF render Document start*/

.ep-overlay {
    background: rgba(255, 255, 255, .7);
}

/* Dok eksportuje – zabrani skrol i sakrij originale */
body.ep-exporting {
    overflow: hidden;
}

    body.ep-exporting #ep-print-root .ep-page {
        visibility: hidden !important;
    }

#ep-print-root {
    width: 800px;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    position: relative;
}

    #ep-print-root * {
        box-sizing: border-box;
    }

    #ep-print-root .ep-page {
        display: block;
        width: 100%;
        min-height: 1123px;
        padding: 0;
        page-break-after: always;
    }

        #ep-print-root .ep-page:last-child {
            page-break-after: auto;
        }

    /* Kad eksportujemo – nateraj prikaz SVIH strana čak i ako su inline sakrivene */
    #ep-print-root.ep-exporting .ep-page {
        display: block !important;
    }

.ep-page {
    width: 794px;
    min-height: 1123px;
    margin: 0 auto;
    background: #fff;
    box-sizing: border-box;
}


@media print {
    body {
        margin: 0 !important;
    }

    .ep-page {
        page-break-after: always;
        break-after: page;
    }

        .ep-page:last-child {
            page-break-after: auto;
        }
}

.ep-export {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 999999 !important;
    width: 800px !important;
    min-height: 1123px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    display: block !important;
}

    .ep-export table {
        width: 800px !important;
    }


@media print {
    .ep-nav {
        display: none !important;
    }

    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    @page {
        size: A4;
        margin: 5mm;
    }
}

.passport-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 12px;
}

.toolbar-left,
.toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* već imaš no-print? ako ne, ovo sakriva toolbar u PDF/štampi */
@media print {
    .no-print {
        display: none !important;
    }
}


@media (max-width: 600px) {
    .passport-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .toolbar-right {
        justify-content: flex-end;
    }
}

/*PDF Document render end*/


@media (max-width: 576px) {
    .ti-title h3 {
        font-size: 1.1rem;
        padding: 8px 14px;
    }

    .ti-title h1::after {
        right: -18px;
        border-left-width: 18px;
        border-top-width: 18px;
        border-bottom-width: 18px;
    }

    .ti-link-list a {
        padding: 9px 8px;
    }
}

.circle-action-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.circle-icon {
    width: 80px;
    height: 80px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
    padding: 0;
}

.k-button-md.k-icon-button.big-icon .k-button-icon.k-svg-icon > svg {
    width: 2.5em;
    height: 2.5em;
}

.circle-icon:hover {
    background-color: #0078d7;
    color: white;
    transform: scale(1.1);
}

.datepicker-datum-izdavanja {
    width: 200px !important;
    text-align: center;
}

.datepicker-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.datepicker-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.datepicker-label {
    font-weight: bold;
}

.datepicker-datum-izdavanja {
    width: 200px !important;
}

}

/* Sidebar filter styles */
.sidebar-popup {
    background: white;
    border-right: 1px solid #dee2e6;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.sidebar-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem;
    flex-shrink: 0;
}

    .sidebar-header h4 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: #495057;
    }

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    max-height: calc(100vh - 140px);
    min-height: calc(100vh - 140px);
}

    .sidebar-content .k-form {
        margin: 0;
    }

    .sidebar-content .k-form-item {
        margin-bottom: 0.8rem;
    }

        .sidebar-content .k-form-item:last-child {
            margin-bottom: 0;
        }

    .sidebar-content .my-form-buttons-container {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 0.8rem 0;
        border-top: 1px solid #dee2e6;
        margin-top: 0.5rem;
    }

        .sidebar-content .my-form-buttons-container .btn {
            width: 100%;
            margin-bottom: 0.4rem;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            cursor: pointer;
            pointer-events: auto;
            z-index: 1000;
            border: none;
            border-radius: 4px;
            font-weight: 500;
        }

            .sidebar-content .my-form-buttons-container .btn:last-child {
                margin-bottom: 0;
            }

/* Custom button colors */
.btn-primeni-filter {
    background-color: #28a745 !important;
    color: white !important;
}

    .btn-primeni-filter:hover {
        background-color: #218838 !important;
        color: white !important;
    }

.btn-obrisi-filter {
    background-color: #dc3545 !important;
    color: white !important;
}

    .btn-obrisi-filter:hover {
        background-color: #c82333 !important;
        color: white !important;
    }

.btn-zatvori-filter {
    background-color: #007bff !important;
    color: white !important;
}

    .btn-zatvori-filter:hover {
        background-color: #0056b3 !important;
        color: white !important;
    }



.q-head-1line {
    height: 40px;
    vertical-align: middle;
    padding-top: 6px;
}


.q-ellipsis-1 {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* Compact form styles */
.sidebar-content .form-floating {
    margin-bottom: 0.8rem;
}

    .sidebar-content .form-floating input,
    .sidebar-content .form-floating select {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    .sidebar-content .form-floating label {
        font-size: 0.85rem;
    }

/* Compact checkbox */
.sidebar-content .k-checkbox {
    margin-bottom: 0.5rem;
}

    .sidebar-content .k-checkbox label {
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }

.circle-action-bar-right {
    display: flex;
    justify-content: right;
    gap: 25px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.mn-inzenjeri-filteri {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
}

.mn-izn-popup {
    background-color: white;
    height: auto !important;
    margin: 40px;
}

.mn-popup-table {
    width: 100%
}

.mn-popup-table-row {
}

.mn-popup-table-column {
    width: 50%;
    padding: 4px;
    font-size: 16px;
}

.mn-izn-popup > table,
.mn-izn-popup > table th,
.mn-izn-popup > table td {
    border: 1px solid;
}

.k-stepper {
    max-height: 700px;
}

.k-step {
    background: #2d408e;
    color: white !important;
    display: flex;
    align-items: center;
    border-radius: 0;
    font-size: 0.85rem;
}

.k-step-label {
    background: none !important;
    box-shadow: none !important;
}

.k-step-current {
    background-color: white !important;
    color: black !important;
    font-size: 0.9rem;
    border: 5px solid #f78b00;
}

    .k-step-current > span {
    }

.k-step-label {
    color: inherit !important;
}

.k-step-text {
    word-wrap: normal !important;
}

.k-focus {
}

.k-step.k-disabled {
    background-color: var(--bs-secondary-bg);
}

    .k-step.k-disabled .k-step-text {
        color: black;
    }

.k-wizard-step {
    min-height: 700px;
}

.k-tabstrip-item {
    background: #2d408e;
    color: white !important;
    font-size: 0.85rem !important;
    border: 1px solid white !important;
    flex-grow: 1;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

    .k-tabstrip-item.k-active {
        color: black !important;
        border: 1px solid #2d408e !important;
    }

    .k-tabstrip-item > .k-link {
        font-size: 0.85rem !important;
    }

    .k-tabstrip-item.k-disabled {
        background-color: var(--bs-secondary-bg);
        opacity: 0.6;
        color: black !important;
    }

.mn-input-container {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
    margin: 2px;
}

.mn-input-label {
    font-size: 0.85rem;
    color: #4a5568;
}

.card-header {
    background: linear-gradient(135deg, var(--glavna-plava) 0%, #1e3a5f 100%);
    color: white;
}

.btn-plava {
    background: #2c5aa0;
    color: white;
    border: none;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--glavna-plava) 0%, #1e3a5f 100%);
    color: white;
    border: none;
}

    .btn-gradient:hover,
    .btn-gradient:focus {
        background: linear-gradient(135deg, #1e3a5f 0%, var(--glavna-plava) 100%);
        color: white;
        opacity: 0.95;
    }





.mn-elaborat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

    .mn-elaborat-grid > .mn-input-container {
        justify-content: end;
    }

.mn-mera-container {
    background: #d7e8f3;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.mn-mera-naslov {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2d3748;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.mn-dodaj-meru-btn {
    width: 100%;
    padding: 6px;
    border: 2px dashed var(--glavna-plava) !important;
    background: white !important;
    color: var(--glavna-plava) !important;
}

    .mn-dodaj-meru-btn:hover {
        background-color: #f0f9ff !important;
        border-color: #1e3a5f !important;
    }

.mn-pretraga-row {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 2rem;
}

.mn-pretraga-container {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.mn-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-top: 1rem;
}

.mn-filter-actions {
    padding: 1rem 1.5rem;
    background: #f7fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.mn-filter-confirm {
    background: var(--glavna-plava) !important;
    color: white !important;
}

    .mn-filter-confirm:hover {
        background: #1e3a5f !important;
        color: white !important;
    }

.mn-filter-cancel {
    background: white !important;
    color: #4a5568 !important;
    border: 1px solid #e2e8f0 !important;
}

    .mn-filter-cancel:hover {
        background: #efecec !important;
    }

.mn-btn-zeleno {
    background: #10b981 !important;
    color: white !important;
}

    .mn-btn-zeleno:hover {
        background: #059669 !important;
    }

.mn-btn-narandzasto {
    background: #e09241 !important;
    color: white !important;
}

    .mn-btn-narandzasto:hover {
        background: #e4d45b !important;
    }

.mn-full-screen {
    position: absolute;
    background: #f5f7fa;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

    .mn-full-screen .form-label,
    .mn-full-screen .form-check-label {
        font-size: 1rem;
    }

.alarm-count {
    position: absolute;
    /*   display: flex;
    width: 4.5ch; 
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.25 / 1;*/
    top: -10px;
    right: -20px;
    background: #dc3545;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
}

.alarms-list-header {
    height: 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-radius: 0;
    padding: 0 1rem;
    margin-top: 0.5rem;
}

.alarms-list {
    position: absolute !important;
    right: 0 !important;
    top: 4.875rem !important;
    z-index: 3;
    max-height: 800px;
    background-color: whitesmoke !important;
    overflow-y: auto;
    overflow-x: hidden;
}

.alarms-list-item {
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.alarms-list-item-header {
    background-color: #3b539a;
    color: white;
    font-size: 18px;
    height: 2rem;
    font-weight: bold;
    padding: 12px 15px;
    display: flex;
    align-items: center;
}

.alarms-item {
    padding: 10px 10px 5px 10px;
}

.alarms-list-item-text {
    padding-left: 10px;
    padding-right: 10px;
    flex-grow: 1;
    background-color: #dddddd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.alarms-list-item-date {
    text-align: right;
}

.k-button-solid-base.close-alarms {
    background-color: #db4246;
    border-radius: 5px;
    color: white;
}

.k-button-solid-base.alarms {
    border-radius: 5px;
    background-color: #10b981;
    color: white;
}

.k-button-solid-base.show-alarms {
    height: 100%;
    width: 100%;
    color: #3b539a;
}

    .k-button-solid-base.show-alarms:hover {
        text-decoration: underline;
    }

.margin-left-auto {
    display: flex;
    padding-left: 20px;
}

.mn-grid-icon {
    height: 25px;
    width: 25px;
}

.k-table-thead {
    background-color: var(--glavna-plava) !important;
    color: white !important;
    border-color: white !important;
}

    .k-table-thead .k-svg-icon {
        color: white !important;
    }

    .k-table-thead th {
        color: white !important;
    }

.k-filter-row .mn-input-label {
    color: white !important;
}

.k-filter-row .k-input-inner {
    background: white !important;
}

.k-pager-numbers .k-button-flat-primary {
    color: var(--glavna-plava) !important;
}

.k-table-td {
    font-size: 0.95rem !important;
}

.mn-pasos-status-grid {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    /*background: #c6f6d5;*/
    /*color: #22543d;*/
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.mn-badge-sivi {
    background-color: #898989;
}

.mn-badge-narandzasti {
    background-color: darkorange;
}

.mn-badge-svetlo-plavi {
    background-color: #0084af;
}

.mn-badge-svetlo-zeleni {
    background-color: #6dcb8a;
}

.mn-badge-tamno-zeleni {
    background-color: darkgreen;
}

.mn-badge-crveni {
    background-color: lightcoral;
}

.mn-badge-zuti {
    background-color: gold;
}

.input-group-text {
    font-size: 0.8rem;
}

.form-label {
    font-size: 0.9rem;
}

.form-check-label {
    font-size: 0.9rem;
}

.mn-potpis-icon {
    height: 40px;
    width: 40px;
}

.duplikat-warning-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    color: #2c5aa0;
    cursor: pointer;
}

    .duplikat-warning-icon svg {
        width: 1rem;
        height: 1rem;
        fill: #2c5aa0;
    }


@font-face {
    font-family: 'PTSans';
    src: url('/fonts/PTSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PTSans';
    src: url('/fonts/PTSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'PTSans';
    src: url('/fonts/PTSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'PTSans';
    src: url('/fonts/PTSans-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

.teget {
    color: #00384a;
}

.mn-progres-bar {
    display: flex;
    justify-content: center;
}

.mn-pb-item {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    position: relative;
}

.mn-pb-item-G {
    background: #d82d38;
}

.mn-pb-item-F {
    background: #e69241;
}

.mn-pb-item-E {
    background: #e7d357;
}

.mn-pb-item-D {
    background: #d7eb52;
}

.mn-pb-item-C {
    background: #b5eb55;
}

.mn-pb-item-B {
    background: #94e75f;
}

.mn-pb-item-A {
    background: #57ee68;
}

.mn-pb-item-Ap {
    background: #3abb3f;
}

.mn-pb-arrow {
    width: 50px;
    height: 50px;
    background: white;
    position: relative;
    /*    border: 1px solid black;*/
    overflow: hidden;
}

.mn-pb-arrow-left {
    position: absolute;
    width: 50px;
    height: 50px;
    /*    background: red;*/
    transform: translate(-50%, 50%);
    rotate: 45deg;
}

.mn-pb-arrow-top-right {
    position: absolute;
    width: 50px;
    height: 50px;
    /*    background: green;*/
    transform: translate(0%, -70%);
    rotate: 45deg;
}

.mn-pb-arrow-bottom-right {
    position: absolute;
    width: 50px;
    height: 50px;
    /*    background: green;*/
    transform: translate(70%, 25%);
    rotate: 45deg;
}

.mn-pb-arrow-G > .mn-pb-arrow-top-right {
    background: #d82d38;
}

.mn-pb-arrow-G > .mn-pb-arrow-bottom-right {
    background: #d82d38;
}

.mn-pb-arrow-GF > .mn-pb-arrow-left {
    background: #d82d38;
}

.mn-pb-arrow-GF > .mn-pb-arrow-top-right {
    background: #e69241;
}

.mn-pb-arrow-GF > .mn-pb-arrow-bottom-right {
    background: #e69241;
}

.mn-pb-arrow-FE > .mn-pb-arrow-left {
    background: #e69241;
}

.mn-pb-arrow-FE > .mn-pb-arrow-top-right {
    background: #e7d357;
}

.mn-pb-arrow-FE > .mn-pb-arrow-bottom-right {
    background: #e7d357;
}

.mn-pb-arrow-ED > .mn-pb-arrow-left {
    background: #e7d357;
}

.mn-pb-arrow-ED > .mn-pb-arrow-top-right {
    background: #d7eb52;
}

.mn-pb-arrow-ED > .mn-pb-arrow-bottom-right {
    background: #d7eb52;
}

.mn-pb-arrow-DC > .mn-pb-arrow-left {
    background: #d7eb52;
}

.mn-pb-arrow-DC > .mn-pb-arrow-top-right {
    background: #b5eb55;
}

.mn-pb-arrow-DC > .mn-pb-arrow-bottom-right {
    background: #b5eb55;
}

.mn-pb-arrow-CB > .mn-pb-arrow-left {
    background: #b5eb55;
}

.mn-pb-arrow-CB > .mn-pb-arrow-top-right {
    background: #94e75f;
}

.mn-pb-arrow-CB > .mn-pb-arrow-bottom-right {
    background: #94e75f;
}

.mn-pb-arrow-BA > .mn-pb-arrow-left {
    background: #94e75f;
}

.mn-pb-arrow-BA > .mn-pb-arrow-top-right {
    background: #57ee68;
}

.mn-pb-arrow-BA > .mn-pb-arrow-bottom-right {
    background: #57ee68;
}

.mn-pb-arrow-AA > .mn-pb-arrow-left {
    background: #57ee68;
}

.mn-pb-arrow-AA > .mn-pb-arrow-top-right {
    background: #3abb3f;
}

.mn-pb-arrow-AA > .mn-pb-arrow-bottom-right {
    background: #3abb3f;
}

.mn-pb-arrow-A > .mn-pb-arrow-left {
    background: #3abb3f;
}

.mn-pb-arrow-down {
    position: absolute;
    height: 75px;
    width: 75px;
    display: flex;
    align-items: end;
    justify-content: center;
    top: -100%;
}

.mn-pb-arrow-icon {
    height: 75px !important;
    width: 75px !important;
    color: #34579a;
}

.mn-pb-arrow-icon-prethodni {
    height: 75px !important;
    width: 75px !important;
    color: darkorange;
}

/* Stilovi za deblje vertikalne kolone u Telerik Chart-u */
.k-chart .k-chart-surface svg rect[k-series] {
    width: 60px !important;
    min-width: 50px !important;
}

.k-chart .k-chart-surface svg .k-bar,
.k-chart .k-chart-surface svg .k-column {
    width: 60px !important;
    min-width: 50px !important;
}

/* Povećanje širine kolona u chart-u */
.k-chart .k-chart-surface svg rect[class*="series"] {
    width: 60px !important;
    min-width: 50px !important;
}

.toolbar-none .k-toolbar {
    display: none!important;
}