/* Minification failed. Returning unminified contents.
(53,24): run-time error CSS1030: Expected identifier, found '['
(53,30): run-time error CSS1031: Expected selector, found '='
(53,30): run-time error CSS1025: Expected comma or open brace, found '='
 */
body {
    background: radial-gradient(circle at 20% 80%, rgba(249,115,22,.4) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(30,64,175,.3) 0%, transparent 50%), linear-gradient(135deg, #0a1428 0%, #1e293b 50%, #0f172a 100%);
    background-size: cover;
    background-attachment: fixed;
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

    body::before {
        content: "";
        position: fixed;
        inset: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(ellipse at 30% 70%, rgba(249,115,22,.12) 0%, transparent 40%), radial-gradient(ellipse at 70% 30%, rgba(30,64,175,.10) 0%, transparent 40%);
        animation: wave 30s ease-in-out infinite;
        pointer-events: none;
        z-index: -1;
    }

@keyframes wave {
    0%, 100% {
        transform: translate(0,0) rotate(0deg);
    }

    50% {
        transform: translate(4%,4%) rotate(.8deg);
    }
}

/* GLOBAL GLASS ELEMENTS */
.table-responsive,
.input-group,
.form-control,
.form-select,
.btn,
.pagination .page-link {
    background: rgba(20,30,50,.35) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    transition: all .3s ease !important;
}

.form-select {
    color: #e2e8f0 !important; 
}

.form-select:has(option[value=""]:checked) {
    color: #94a3b8 !important;
}

.form-select option {
    background-color: #1e293b !important; 
    color: #e2e8f0 !important; 
}

.form-select option:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

.form-select option:checked {
    background-color: rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
}



/*  HEADERS */
h2 {
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
}

    h2 span {
        color: #f97316;
        font-weight: 800;
    }

/* TABLE */
.station-index .station-table table,
.station-index .station-table thead,
.station-index .station-table tbody,
.station-index .station-table tr,
.station-index .station-table th,
.station-index .station-table td {
    background: transparent !important;
}

/* HEADER */
.station-index .station-table thead th {
    color: #f97316;
    border: none;
    letter-spacing: 1px;
}

/* ROWS */
.station-index .station-table tbody tr {
    transition: background .25s ease, transform .25s ease;
}

/* GLASS HOVER */
.station-index .station-table tbody tr:hover {
    background: rgba(255,255,255,.06);
    transform: translateY(-1px);
}

/* CELL SEPARATORS */
.station-index .station-table td {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.station-index .station-table .btn-sm {
    padding: .35rem .55rem;
}

.station-index .station-table {
    color: #e2e8f0;
}

.station-index .station-table a {
    color: #e5e7eb; 
    text-decoration: none;
    font-weight: 500;
}

.station-index .station-table a:hover {
    color: #f97316; 
    text-decoration: underline;
}

.station-index .station-table a i {
    color: #94a3b8;
    transition: color .2s ease;
}

.station-index .station-table a:hover i {
    color: #f97316;
}

.station-index .station-table thead th {
    color: #f97316;
    opacity: 0.95;
}

.station-index .station-table tbody td {
    color: #e2e8f0;
}

.station-index .station-table td span.fw-medium {
    color: #86efac; /* svijetlo zelena */
}

.station-index .stream-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 12px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color .2s ease;
}

.station-index .stream-item:hover {
    color: #f97316;
    text-decoration: underline;
}

/* INPUTS — UNIFIED */
.form-control,
.input-group-text {
    background: rgba(20,30,50,.35) !important;
    color: #e2e8f0 !important;
    border: none !important;
    border-radius: 14px !important;
    backdrop-filter: blur(10px) !important;
}

    .form-control::placeholder {
        color: #94a3b8;
    }

    .form-control:focus {
        background: rgba(40,55,80,.6) !important;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
    }

/* PASSWORD GROUP (Login/Register) */

/* Ovo stvara JEDINSTVENI okvir oko inputa i ikone */
.password-group .input-group {
    background: rgba(20,30,50,.35) !important;
    border: 1.5px solid rgba(255,255,255,.15) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(10px) !important;
    overflow: hidden;
}

/* Dijete elementi ne smiju imati vlastiti border */
.password-group .form-control,
.password-group .input-group-text {
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
}

/* Ikona */
.password-group .input-group-text i {
    color: #e2e8f0 !important;
}

/* Fokus cijele grupe */
.password-group .input-group:focus-within {
    border-color: #f97316 !important;
}

/* BUTTONS */
.btn-primary,
.btn-success {
    background: #f97316 !important;
    color: #fff !important;
    border-radius: 14px !important;
    padding: .75rem 1.8rem !important;
    border: none !important;
}

.btn-primary:hover,
.btn-success:hover {
    background: #fb923c !important;
    transform: translateY(-2px);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px; 
    padding: 0 1.8rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e5e7eb;
    border-radius: 14px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: rgba(249, 115, 22, 0.15); 
    border-color: rgba(249, 115, 22, 0.6);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* PAGINATION */
.pagination .page-link {
    color: #94a3b8 !important;
}

.pagination .page-item.active .page-link {
    background: #f97316 !important;
    color: #fff !important;
}

.pagination .page-item:not(.active) .page-link:hover {
    background: #f97316 !important;
    color: #fff !important;
}

/* SEARCH INPUT*/
.search-group.input-group.input-group-lg {
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    overflow: hidden;
}

.search-group .form-control,
.search-group .input-group-text {
    border: none !important;
    background: transparent !important;
}

/*  SMALLER FORM FONTS (Login/Register) */

.auth-form .form-control,
.auth-form .input-group-text {
    font-size: 1rem !important;
    padding: 0.55rem 0.9rem !important;
}

    .auth-form .form-control::placeholder {
        font-size: 0.85rem !important;
    }

.auth-form label {
    font-size: 0.9rem !important;
}

.auth-form .btn {
    font-size: 0.95rem !important;
    padding: 0.65rem 1.4rem !important;
}

/* navbar */

.sls-navbar {
    background: linear-gradient( 135deg, rgba(15,23,42,.95), rgba(30,41,59,.95) );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.sls-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: #f97316 !important;
}

.sls-navbar .navbar-brand i {
    font-size: 1.1rem;
}

.sls-navbar .nav-link {
    color: #cbd5f5 !important;
    font-weight: 500;
}

.sls-navbar .nav-link.active {
    color: #f97316 !important;
}

.sls-user {
    font-size: 0.9rem;
}

.sls-username {
    color: #e2e8f0;
    opacity: .9;
}

.sls-logout {
    color: #94a3b8;
    text-decoration: none;
    transition: color .2s ease;
}

.sls-logout:hover {
    color: #f97316;
    text-decoration: underline;
}

/* edit */
.created-box {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: inline-block;
}

/* Secondary action button (Reset, etc.) — matches .btn-primary geometry */
.btn-outline-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,.04) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(255,255,255,.20) !important;
    border-radius: 14px !important;
    padding: .75rem 1.8rem !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

.btn-outline-secondary:hover {
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(255,255,255,.35) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Stronger contrast for muted helpers (user IDs, empty-state icon, "Never") */
.station-index .text-muted {
    color: #cbd5e1 !important;
}


@media screen and (min-width: 576px) {
    .container {
        max-width: 97%;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1690px;
    }
}

@media screen and (max-width: 1600px) {
    .main-slider .slideImg {
        width: 50%;
    }

    .main-slider .swiper-pagination {
        left: 51.5%;
    }

    .main-slider .slide-content {
        max-width: 45%;
    }

    .main-slider .swiper-button-next, .main-slider .swiper-button-prev {
        bottom: 10px;
    }
}

@media all and (max-width: 1440px) {

    h1 {
        font-size: 40px;
    }

}


@media all and (max-width: 1199px) {

    .nav-desktop-container {
        display: none;
    }

    .s1 .mb-90-60-30 {
        margin-bottom: 40px;
    }

    .mb-90-60-30 {
        margin-bottom: 60px;
    }

    .search-menu-trigger {
        margin: 0 25px;
    }

    .nav-down.nav-down-topbar .langSwitch,
    .langSwitch {
        margin: 0;
    }
   
    .mobile-nav-wrapper,
    .nav-mobile-wrapper,
    .has-submenu-level3 > ul .mobile-show-all-cat {
        display: block;
    }

    .main-nav {
        height: auto;
    }

    .main-nav li {
        width: 100%;
        margin: 0;
        padding: 0 0 20px 0;
    }

    nav > ul > li > a::before {
        display: none;
    }

    .hidden-side-nav ul {
        padding: 20px 0 0 0;
        margin: 0;
    }

    .has-submenu::after {
        position: absolute;
        background: url(../img/chevron-right.svg) 50% 50% no-repeat;
        background-size: 7px auto;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 14px;
        transition: all .3s ease-out;
    }

    .has-submenu-level3 a::after {
        transition: all .3s ease-out;
    }

    li.active .has-submenu::after {
        transform: translateY(-7px) rotate(90deg);
    }

    .has-submenu-level3 a.active::after {
        transform: translateY(0) rotate(90deg);
    }

    nav > ul > li.active > a::before, nav > ul > li > a::before {
        display: none;
    }

    .main-nav .submenu,
    .has-submenu-level3 > ul {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        box-shadow: none;
        padding: 5px 15px;
        margin: 10px 0;
        opacity: 1;
    }

    .has-submenu-level3:hover > ul {
        display: none;
    }

    .nav-outer-wrapper {
        padding: 10px 25px;
    }

    .main-nav .submenu li {
        padding: 0;
        border-bottom: none;
    }

    .main-nav .submenu a {
        padding: 5px 0;
    }

    .main-slider::before {
        max-width: 100%;
        top: 410px;
        background: #fff;
        border-radius: 0;
    }

    .main-slider .slide-content {
        padding: 30px 0 80px 0;
    }

    .main-slider .slideImg {
        top: auto;
        width: 100%;
        margin: 0;
        padding-top: 0;
    }

    .main-slider .slideImg img {
        width: 100%;
    }

    .main-slider .slide-content {
        max-width: 100%;
    }

    .main-slider .slide-content h1 {
        font-size: 36px;
        margin: 0 0 20px 0;
    }

    .main-slider .swiper-pagination {
        left: 15px;
        bottom: auto;
        top: 15px;
    }

    .sectionIntro {
        font-size: 18px;
    }

    .boxevi {
        margin: 30px 0 30px 0;
    }

    .beneBox h6,
    .beneBox h6 span {
        font-size: 37px;
        padding-bottom: 10px;
    }

    .brojac {
        padding: 70px 0;
    }

    .novosti {
        padding: 60px 0;
    }

    .newsTitle {
        font-size: 18px;
        padding: 20px;
    }

    .prod-item h3 {
        font-size: 20px;
        margin: 15px 0 10px 0;
    }

    .boxLayout,
    .imgWrap {
        width: 100%;
    }

    .imgWrap img {
        display: block;
        margin: 0 auto 60px auto;
    }

    .flip:nth-child(even) .imgWrap {
        padding: 0;
    }

    .swiperBlokovi .swiper-nav {
        top: 21px;
    }

    footer {
        padding: 60px 0;
    }

    .prod-video-wrapper .play-ico {
        width: 80px;
        height: 80px;
    }

    .productIntro {
        font-size: 22px;
    }

    .news-list-wrapper .newsBox,
    .products-list-wrapper .prod-item {
        width: 32%;
    }

    .news-list-wrapper .newsBox:nth-of-type(4n),
    .products-list-wrapper .prod-item:nth-of-type(4n) {
        margin: 0 2% 2% 0;
    }

    .news-list-wrapper .newsBox:nth-of-type(3n),
    .products-list-wrapper .prod-item:nth-of-type(3n) {
        margin: 0 0 2% 0;
    }
}

@media all and (max-width: 991px) {
    .main-content-wrapper {
        margin-top: 0;
        padding: 80px 0 0 0;
    }
    
    .flip:nth-child(even),
    .flip:nth-child(odd) {
        background: none;
    }

    .tab-content>.tab-pane {
        display: block;
        opacity: 1;
    }

    .ispisReference .refBox {
        padding: 20px;
        width: 25%;
        max-width: unset;
    }

    footer {
        background: linear-gradient(90deg, rgba(46, 46, 54, 1) 0%, rgba(87, 87, 101, 1) 100%);
    }

    .footer-col {
        width: 50%;
        padding: 0 40px 40px 0;
    }

    footer .foo-partneri {
        margin: 0 0 40px 0;
    }

    .productIntro {
        display: block;
        max-width: 100%;
        margin: 0 0 40px 0;
        height: auto;
    }

    .subpage-wrapper {
        padding: 25px 0 0 0;
    }

    .subpage header {
        height: 350px;
    }

    h1 {
        font-size: 35px;
    }

    .proizvodTabovi .tab-content,
    .proizvodTabovi {
        padding: 0;
    }

    .proizvodTabovi {
        background: #fff;
    }

    .accordion-button {
        background: #eee;
        margin: 0 0 10px 0;
        font-weight: 600;
        font-size: 18px;
        border-radius: 10px;
    }

    .accordion-button:not(.collapsed) {
        color: #fff;
        background: #565664;
    }

    .proizvodTabovi .accordion-body img {
        width: 100%;
    }

    .tab-right-side-content {
        width: 100%;
        padding: 30px;
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .breadcrumbs ul {
        padding: 10px 0 20px 0;
    }

    .news-list-wrapper .newsBox,
    .products-list-wrapper .prod-item {
        width: 49%;
    }

    .news-list-wrapper .newsBox:nth-of-type(3n),
    .products-list-wrapper .prod-item:nth-of-type(3n) {
        margin: 0 2% 2% 0;
    }

    .news-list-wrapper .newsBox:nth-of-type(2n),
    .news-list-wrapper .newsBox:nth-of-type(4n),
    .products-list-wrapper .prod-item:nth-of-type(2n),
    .products-list-wrapper .prod-item:nth-of-type(4n) {
        margin: 0 0 2% 0;
    }

    .img-left-section img,
    .img-right-section img {
        width: 100%;
    }

    .img-left-section .img-section-content, .img-right-section .img-section-content {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .img-section-content h2 {
        font-size: 34px;
        margin: 0 0 10px 0;
    }

    .img-right-section img {
        order: 1;
    }

    .img-right-section .img-section-content {
        order: 2;
    }

    .img-right-section,
    .img-left-section {
        margin: 0 0 50px 0;
    }
}

@media all and (max-width: 767px) {
    .productIntro {
        font-size: 20px;
    }

    .productMainIntro {
        padding: 0 0 15px 0;
        margin: 0 auto;
    }

    .subpage-wrapper {
        padding: 0;
    }

    .main-slider .swiper-pagination {
        padding: 6px 0;
        width: 70px;
        font-size: 14px;
    }

    .main-slider .slide-content h1 {
        font-size: 32px;
    }

    .main-slider .slide-content .home-slider-txt {
        font-size: 18px;
    }


    .ispisReference .refBox {
        padding: 20px;
        width: 33%;
    }

    .beneBox {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .singleBox {
        padding: 30px 10px 0 10px;
    }

    .boxevi .singleBox:first-child,
    .boxevi .singleBox:nth-child(3),
    .boxevi .singleBox:nth-child(2) {
        border: none;
    }

    .singleBox p {
        margin-bottom: 10px;
    }

    .news-gallery a {
        width: 48%;
    }

    .news-gallery a:nth-child(2n) {
        margin: 0 0 2% 0;
    }

    .news-gallery a:nth-child(3n) {
        margin: 0 2% 2% 0;
    }
}

@media screen and (max-width: 575px) {
    
    .main-slider .slide-content h1,
    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 30px;
    }

    .search-wrapper-menu {
        position: fixed;
        right: 0;
        left: 0;
        margin: 0 auto;
        top: 20px;
        width: 95%;
    }

    .nav-outer-wrapper,
    .nav-down.nav-down-topbar {
        top: 0;
    }

    .nav-up {
        top: -125px;
    }
    
    .nav-outer-wrapper {
        padding: 10px 15px;
    }

    .main-slider {
        padding: 90px 0 0 0;
    }

    .main-slider::before {
        top: 260px;
    }

    .main-slider .btn {
        margin: 0;
    }

    .logo svg {
        width: 170px;
    }

    .hidden-side-nav {
        width: 100%;
    }

    .swiperBlokovi .swiper-nav {
        top: 18px;
    }

    footer {
        font-size: 15px;
    }

    .swiperKlijenti {
        padding: 0;
    }

    .swiperKlijenti  .swiper-button-prev,
    .swiperKlijenti  .swiper-button-next {
        display: none;
    }

    .subpage header {
        height: 250px;
    }

    .subpage h1 {
        top: 60%;
    }

    .productIntro {
        margin: 0 0 20px 0;
    }

    .breadcrumbs ul li a {
        font-size: 14px;
    }

    .productIntro {
        font-size: 18px;
    }

    .prod-video-wrapper .play-ico {
        width: 60px;
        height: 60px;
    }

    .tab-right-side-content {
        padding: 30px 10px;
    }

    .swiperBlokovi h2,
    .forma h2 {
        font-size: 28px;
    }

    .forma .formaKontakt {
        margin-top: 40px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .mb-90-60-30 {
        margin-bottom: 30px;
    }

    .news-list-wrapper .newsBox,
    .products-list-wrapper .prod-item {
        width: 100%;
        margin: 0 0 7% 0;
    }

    .news-list-wrapper .newsBox:nth-of-type(2n),
    .news-list-wrapper .newsBox:nth-of-type(4n),
    .news-list-wrapper .newsBox:nth-of-type(3n),
    .products-list-wrapper .prod-item:nth-of-type(2n),
    .products-list-wrapper .prod-item:nth-of-type(4n),
    .products-list-wrapper .prod-item:nth-of-type(3n) {
        margin: 0 0 7% 0;
    }

    .f404 {
        padding: 40px 0;
    }

    .client-item {
        max-width: 50%;
        height: 140px;
    }

    .client-item img {
        max-width: 130px;
        height: 60px;
    }

    .shuffle-filter .btn {
        padding: 7px 15px;
        margin: 10px 5px;
    }

    .img-left-section .img-section-content,
    .img-right-section .img-section-content {
        font-size: 16px;
    }

    .img-right-section, .img-left-section {
        margin: 0 0 30px 0;
    }

    .img-section-content h2 {
        font-size: 30px;
    }

    .about-us {
        font-size: 18px;
        padding: 60px 0;
    }

    .about-us h2 {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 420px) {
    .logo svg {
        width: 155px;
    }

    .footer-col {
        width: 100%;
        padding: 0 0 30px 0;
    }

    .foo-logo {
        max-width: 180px;
    }

    .formaKontakt .btn {
        width: 100%;
    }

    .swiper-button-prev {
        left: -110px;
    }
}
