/* _content/IDOMLeisureIBE/Components/Layout/LoadingSpinner.razor.rz.scp.css */
/* Used under CC0 license */

.lds-ellipsis[b-3vmnd7djss] {
    color: #666;
    animation: fade-in-b-3vmnd7djss 1s;
}

@keyframes fade-in-b-3vmnd7djss {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

    .lds-ellipsis[b-3vmnd7djss],
    .lds-ellipsis div[b-3vmnd7djss] {
        box-sizing: border-box;
    }

.lds-ellipsis[b-3vmnd7djss] {
    margin: auto;
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div[b-3vmnd7djss] {
        position: absolute;
        top: 33.33333px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: currentColor;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1)[b-3vmnd7djss] {
            left: 8px;
            animation: lds-ellipsis1-b-3vmnd7djss 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2)[b-3vmnd7djss] {
            left: 8px;
            animation: lds-ellipsis2-b-3vmnd7djss 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3)[b-3vmnd7djss] {
            left: 32px;
            animation: lds-ellipsis2-b-3vmnd7djss 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4)[b-3vmnd7djss] {
            left: 56px;
            animation: lds-ellipsis3-b-3vmnd7djss 0.6s infinite;
        }

@keyframes lds-ellipsis1-b-3vmnd7djss {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3-b-3vmnd7djss {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2-b-3vmnd7djss {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
/* _content/IDOMLeisureIBE/Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout.razor.css */
/* --- Glavni layout --- */
.app-layout[b-4kg84a6h2z] {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding-top: 40px; /* visina navbar-a */
}

.left-frame[b-4kg84a6h2z] {
    flex: 1;
    min-width: 0;
    overflow: auto;
    background: #fff;
}

/* Chatbot container (jedna instanca) */
.chatbot-container[b-4kg84a6h2z] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 40px);
    overflow: hidden; /* roditelj ne scrolla */
    contain: layout paint; /* stabilniji layout */
}

.chat-scroll[b-4kg84a6h2z] {
    flex: 1;
    min-height: 0;
    overflow-y: auto; /* unutarnji dio scrolla */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    user-select: text; /* dozvoli označavanje teksta */
    scrollbar-gutter: stable;
}

/* DESKTOP sidebar */
.chatbot-container.sidebar[b-4kg84a6h2z] {
    width: 550px;
    border-left: 1px solid #ddd;
    background: #fafafa;
}

/* Popup overlay */
.overlay[b-4kg84a6h2z] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1000;
}

    .overlay.show[b-4kg84a6h2z] {
        display: none; /* Aktivira se samo na mobilnom */
    }

/* Floating button */
.floating-btn[b-4kg84a6h2z] {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    background: #007bff;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
    cursor: pointer;
    transition: transform .15s ease, background-color .15s ease;
}

    .floating-btn:hover[b-4kg84a6h2z] {
        background-color: #0056b3;
        transform: scale(1.05);
    }

.chat-scroll[b-4kg84a6h2z],
.chat-scroll > chat[b-4kg84a6h2z] {
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* MOBILNI prikaz */
@media (max-width: 900px) {
    .chatbot-container.sidebar[b-4kg84a6h2z] {
        
        display: none;
        width: 93%;
        height: calc(100vh - 80px);
    }

    .chatbot-container.popup-open[b-4kg84a6h2z] {
        display: flex;
        position: fixed;
        inset: 5% 5%;
        z-index: 1101;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,.35);
        overflow: hidden;
        animation: slideUp-b-4kg84a6h2z .25s ease;
    }

    .overlay.show[b-4kg84a6h2z] {
        display: block;
        animation: fadeIn-b-4kg84a6h2z .2s ease;
    }

    .floating-btn[b-4kg84a6h2z] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Animacije */
@keyframes fadeIn-b-4kg84a6h2z {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideUp-b-4kg84a6h2z {
    from {
        transform: translateY(24px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}
/* _content/IDOMLeisureIBE/Components/Layout/NavMenu.razor.rz.scp.css */
/* --- Reset i osnovni stilovi --- */
*[b-5orenjbc60] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-5orenjbc60] {
    font-family: Arial, sans-serif;
}

/* --- Navbar --- */
.navbar[b-5orenjbc60] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0D6EFD 0%, #0054A5 100%);
    padding: 0 3px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .navbar .container-fluid[b-5orenjbc60] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

/* --- Sekcije --- */
.navbar-left-section[b-5orenjbc60] {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 20px;
    gap: 40px;
}

.navbar-right-section[b-5orenjbc60] {
    flex: 0 0 400px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 24px;
}

/* --- Logo --- */
.logo[b-5orenjbc60] {
    height: 50px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* --- Gumb “New Chat” --- */
.nav-newchat-btn[b-5orenjbc60] {
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 8px 16px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1e3c72;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .nav-newchat-btn:hover[b-5orenjbc60] {
        background: #f8f9fa;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

/* --- Hamburger dugme --- */
.navbar-toggler[b-5orenjbc60] {
    display: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 42px;
    height: 42px;
    position: relative;
}

    .navbar-toggler:hover[b-5orenjbc60] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.8);
    }

.navbar-toggler-icon[b-5orenjbc60],
.navbar-toggler-icon[b-5orenjbc60]::before,
.navbar-toggler-icon[b-5orenjbc60]::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: all 0.2s ease;
}

    .navbar-toggler-icon[b-5orenjbc60]::before {
        top: -8px;
    }

    .navbar-toggler-icon[b-5orenjbc60]::after {
        top: 8px;
    }

/* --- Desktop navigacija --- */
@media (min-width: 1001px) {
    .navbar-collapse[b-5orenjbc60] {
        display: flex !important;
        position: static;
        background: transparent;
        width: auto;
        box-shadow: none;
    }

    .navbar-nav[b-5orenjbc60] {
        display: flex;
        flex-direction: row;
        gap: 22px;
        align-items: center;
    }

        .navbar-nav .nav-item[b-5orenjbc60] {
            position: relative;
        }

            .navbar-nav .nav-item:not(:last-child)[b-5orenjbc60]::after {
                content: '';
                position: absolute;
                right: -6px;
                top: 50%;
                transform: translateY(-50%);
                width: 1px;
                height: 20px;
                background: rgba(255, 255, 255, 0.3);
            }

        .navbar-nav .nav-link[b-5orenjbc60] {
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }

            .navbar-nav .nav-link:hover[b-5orenjbc60],
            .navbar-nav .nav-link.active[b-5orenjbc60] {
                background: #ffffff;
                color: #1e3c72;
                transform: translateY(-1px);
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }

    /* Dropdown desktop */
    .dropdown[b-5orenjbc60] {
        position: relative;
    }

    .dropdown-menu[b-5orenjbc60] {
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        min-width: 200px;
        padding: 8px 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.2s ease;
        z-index: 2000;
    }

        .dropdown-menu.show[b-5orenjbc60],
        .dropdown:hover .dropdown-menu[b-5orenjbc60] {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

    .dropdown-item[b-5orenjbc60] {
        color: #333;
        padding: 10px 20px;
        text-decoration: none;
        display: block;
        transition: all 0.2s ease;
    }

        .dropdown-item:hover[b-5orenjbc60] {
            background: #f8f9fa;
            color: #1e3c72;
            padding-left: 24px;
        }
}

/* --- Mobilna navigacija --- */
@media (max-width: 1000px) {
    .navbar-left-section[b-5orenjbc60] {
        flex: 1;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-right-section[b-5orenjbc60] {
        display: none;
    }

    .navbar-toggler[b-5orenjbc60] {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
    }

    .navbar-collapse[b-5orenjbc60] {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #ffffff;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

        .navbar-collapse.show[b-5orenjbc60] {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

    .navbar-nav[b-5orenjbc60] {
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        padding: 20px 0;
    }

        .navbar-nav .nav-link[b-5orenjbc60] {
            color: #333;
            padding: 16px 24px;
            width: 100%;
            border-left: 4px solid transparent;
            text-align: left;
            transition: all 0.3s ease;
        }

            .navbar-nav .nav-link:hover[b-5orenjbc60] {
                background-color: #f8f9fa;
                color: #1e3c72;
                border-left-color: #1e3c72;
                padding-left: 28px;
            }

            .navbar-nav .nav-link.active[b-5orenjbc60] {
                background-color: #e3f2fd;
                color: #1e3c72;
                border-left-color: #1e3c72;
            }

    /* Dropdown mobilni */
    .dropdown-menu[b-5orenjbc60] {
        position: static;
        background: #f8f9fa;
        border-left: 4px solid #e0e0e0;
        margin-left: 20px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

        .dropdown-menu.show[b-5orenjbc60] {
            max-height: 400px;
            border-left-color: #1e3c72;
        }

    .dropdown-item[b-5orenjbc60] {
        color: #666;
        padding: 12px 20px;
        font-size: 0.95rem;
        text-decoration: none;
        display: block;
    }

        .dropdown-item:hover[b-5orenjbc60] {
            background: #e3f2fd;
            color: #1e3c72;
            padding-left: 24px;
        }
}
/* _content/IDOMLeisureIBE/Components/Layout/SurveyPrompt.razor.rz.scp.css */
.surveyContainer[b-g6jtfi3eru] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9em;
    margin: 0.5rem auto -0.7rem auto;
    max-width: 1024px;
    color: #444;
}

    .surveyContainer a[b-g6jtfi3eru] {
        text-decoration: underline;
    }

    .surveyContainer .tool-icon[b-g6jtfi3eru] {
        margin-top: 0.15rem;
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
    }
/* _content/IDOMLeisureIBE/Components/Pages/Chat/Chat.razor.rz.scp.css */
:host[b-wm644ahcnc] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Header ostaje gore */
chat-header[b-wm644ahcnc] {
    flex-shrink: 0;
}

/* --- Poruke (scrollable dio) --- */
.message-list-container[b-wm644ahcnc] {
    flex: 1; /* zauzima sav preostali prostor */
    min-height: 0;
    overflow-y: auto; /* samo ovaj dio scrolla */
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* --- Donji dio (suggestions + input) --- */
.chat-container[b-wm644ahcnc] {
    flex-shrink: 0; /* ne scrolla, fiksno stoji na dnu */
    position: sticky; /* dodatno osiguranje */
    bottom: 0;
    background-color: #F3F4F6;
    border-top: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem 1rem 0.5rem;
    z-index: 1;
}

/* --- Dodatno: ako koristiš .chat-scroll u layoutu --- */
.chat-scroll[b-wm644ahcnc],
.chat-scroll > chat[b-wm644ahcnc] {
    display: flex;
    flex-direction: column;
    height: 100%;
}
/* _content/IDOMLeisureIBE/Components/Pages/Chat/ChatCitation.razor.rz.scp.css */
.citation[b-h8ka70cw8r] {
    display: inline-flex;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-top: 1rem;
    margin-right: 1rem;
    border-bottom: 2px solid #a770de;
    gap: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    background-color: #ffffff;
}

    .citation[href]:hover[b-h8ka70cw8r] {
        outline: 1px solid #865cb1;
    }

    .citation svg[b-h8ka70cw8r] {
        width: 1.5rem;
        height: 1.5rem;
    }

    .citation:active[b-h8ka70cw8r] {
        background-color: rgba(0,0,0,0.05);
    }

.citation-content[b-h8ka70cw8r] {
    display: flex;
    flex-direction: column;
}

.citation-file[b-h8ka70cw8r] {
    font-weight: 600;
}
/* _content/IDOMLeisureIBE/Components/Pages/Chat/ChatHeader.razor.rz.scp.css */
.chat-header-container[b-vjbk2lrynv] {
    top: 0; 
    padding: 0.5rem; 
}

.chat-header-controls[b-vjbk2lrynv] {
    margin-bottom: 0.2rem; 
}

h1[b-vjbk2lrynv] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-chat-icon[b-vjbk2lrynv] {
    width: 1.25rem;
    height: 1.25rem;
    color: rgb(55, 65, 81);
}

@media (min-width: 768px) {
    .chat-header-container[b-vjbk2lrynv] {
        position: sticky;
    }
}
/* _content/IDOMLeisureIBE/Components/Pages/Chat/ChatInput.razor.rz.scp.css */
.input-box[b-ina0y4zrq5] {
    display: flex; 
    flex-direction: column; 
    background: white;
    border: 2px solid rgb(229, 231, 235);
    border-radius: 8px;
    
}

    .input-box:focus-within[b-ina0y4zrq5] {
        outline: 2px solid #4152d5;
    }

textarea[b-ina0y4zrq5] {
    resize: none;
    border: none;
    outline: none;
    flex-grow: 1;
}

    textarea:placeholder-shown + .tools[b-ina0y4zrq5] {
        --send-button-color: #aaa;
    }

.tools[b-ina0y4zrq5] {
    display: flex; 
    margin-top: 1rem; 
    align-items: center;
}

.tool-icon[b-ina0y4zrq5] {
    width: 1.25rem;
    height: 1.25rem;
}

.send-button[b-ina0y4zrq5] {
    color: var(--send-button-color);
    margin-left: auto;
}

    .send-button:hover[b-ina0y4zrq5] {
        color: black;
    }

.attach[b-ina0y4zrq5] {
    background-color: white;
    border-style: dashed;
    color: #888;
    border-color: #888;
    padding: 3px 8px;
}

    .attach:hover[b-ina0y4zrq5] {
        background-color: #f0f0f0;
        color: black;
    }
/* _content/IDOMLeisureIBE/Components/Pages/Chat/ChatMessageItem.razor.rz.scp.css */
.user-message[b-z3mf5egu2q] {
    background: rgb(182 215 232);
    align-self: flex-end;
    min-width: 25%;
    max-width: calc(100% - 5rem);
    padding: 0.5rem 1.25rem;
    border-radius: 0.25rem; 
    color: #1F2937; 
    white-space: pre-wrap; 
}

.assistant-message[b-z3mf5egu2q], .assistant-search[b-z3mf5egu2q] {
    display: grid;
    grid-template-rows: min-content;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.25rem; 
}

.assistant-message-header[b-z3mf5egu2q] {
    font-weight: 600;
}

.assistant-message-text[b-z3mf5egu2q] {
    grid-column-start: 2;
}

.assistant-message-icon[b-z3mf5egu2q] {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    border-radius: 9999px; 
    width: 1.5rem; 
    height: 1.5rem; 
    color: #ffffff; 
    background: #9b72ce;
}

    .assistant-message-icon svg[b-z3mf5egu2q] {
        width: 1rem; 
        height: 1rem; 
    }

.assistant-search[b-z3mf5egu2q] {
    font-size: 0.875rem;
    line-height: 1.25rem; 
}

.assistant-search-icon[b-z3mf5egu2q] {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 1.5rem; 
    height: 1.5rem; 
}

    .assistant-search-icon svg[b-z3mf5egu2q] {
        width: 1rem; 
        height: 1rem; 
    }

.assistant-search-content[b-z3mf5egu2q] {
    align-content: center;
}

.assistant-search-phrase[b-z3mf5egu2q] {
    font-weight: 600;
}

/* Default styling for markdown-formatted assistant messages */
[b-z3mf5egu2q] ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

[b-z3mf5egu2q] ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
}

[b-z3mf5egu2q] li {
    margin: 0.5rem 0;
}

[b-z3mf5egu2q] strong {
    font-weight: 600;
}

[b-z3mf5egu2q] h3 {
    margin: 1rem 0;
    font-weight: 600;
}

[b-z3mf5egu2q] p + p {
    margin-top: 1rem;
}

[b-z3mf5egu2q] table {
    margin: 1rem 0;
}

[b-z3mf5egu2q] th {
    text-align: left;
    border-bottom: 1px solid silver;
}

[b-z3mf5egu2q] th, [b-z3mf5egu2q] td {
    padding: 0.1rem 0.5rem;
}

[b-z3mf5egu2q] th, [b-z3mf5egu2q] tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}

[b-z3mf5egu2q] pre > code {
    background-color: white;
    display: block;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}
/* _content/IDOMLeisureIBE/Components/Pages/Chat/ChatMessageList.razor.rz.scp.css */
.message-list-container[b-gihpacxol6] {
    margin: 2rem 1.5rem;
    flex-grow: 1;
}

.message-list[b-gihpacxol6] {
    display: flex; 
    flex-direction: column; 
    gap: 1.25rem; 
}

.no-messages[b-gihpacxol6] {
    text-align: center;
    font-size: 1.25rem;
    color: #999;
    margin-top: calc(40vh - 18rem);
}

chat-messages[b-gihpacxol6] >  div:last-of-type {
    /* Adds some vertical buffer to so that suggestions don't overlap the output when they appear */
    margin-bottom: 2rem;
}
/* _content/IDOMLeisureIBE/Components/Pages/Chat/ChatSuggestions.razor.rz.scp.css */
.suggestions[b-vvjuo705cf] {
    text-align: right;
    white-space: nowrap;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    display: flex;
    margin-bottom: 0.75rem;
}
/* _content/IDOMLeisureIBE/Components/Pages/Index.razor.rz.scp.css */
.hero-background[b-ihebo2dx40] {
    background-image: url("/strand-001-min.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    padding-bottom: 80px;
}

    /* Blago zatamnjenje slike radi kontrasta */
    .hero-background[b-ihebo2dx40]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.15);
        z-index: 0;
    }

    /* Container sadržaj iznad slike */
    .hero-background > .container[b-ihebo2dx40] {
        position: relative;
        z-index: 1;
    }

/* 🔹 Kartice s oglasima */
.card[b-ihebo2dx40] {
    border: 2px solid rgba(255, 255, 255, 0.8); /* bijeli border */
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    /* Hover efekt za bolji dojam */
    .card:hover[b-ihebo2dx40] {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

/* Slika unutar kartice */
.card-img-top[b-ihebo2dx40] {
    border-bottom: 2px solid #eee;
}

/* 🔹 Blaga margina ispod tražilice da tab ne dodiruje reklame */
.search-wrapper[b-ihebo2dx40] {
    margin-bottom: 16px;
}
/* _content/IDOMLeisureIBE/Components/SearchPanel/AirportSelector.razor.rz.scp.css */
.airport-host[b-h2gguruf1w] {
    position: relative;
}

/* Popup iznad svega */
.airport-popup[b-h2gguruf1w] {
    position: fixed;
    background: #fff;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    width: 600px; /* uže od 900 – zgodniji layout */
    max-height: 520px;
    padding: 0;
}

/* unutrašnji scroll */
.popup-scroll[b-h2gguruf1w] {
    max-height: 470px;
    overflow-y: auto;
    padding: 1rem;
}

/* 3 uže kolone */
.airport-grid[b-h2gguruf1w] {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    column-gap: 12px;
    row-gap: 8px;
}

    .airport-grid .ap-col[b-h2gguruf1w] {
        min-width: 220px;
    }
/* _content/IDOMLeisureIBE/Components/SearchPanel/Search.razor.rz.scp.css */
/* --- Tabs sada lebde iznad panela --- */
/* === Tabs (Kroatien / Weltweit) === */
.nav-tabs[b-laypssefw2] {
    border: none;
    margin-bottom: -6px; /* da se nasloni na panel */
}


    .nav-tabs .nav-link[b-laypssefw2] {
        border: 1px solid rgba(255, 255, 255, 0.5);
        font-weight: 600;
        color: #333;
        background: #fff;
        
        border-radius: 10px 10px 0 0; /* <-- dodano: zaobljenje gornjih kutova */
        margin-right: 6px;
        transition: all 0.2s ease;
        padding: 6px 16px;
    }

        .nav-tabs .nav-link.active[b-laypssefw2] {
            background: rgba(255, 255, 255, 0.8);
            color: #0d6efd;
            border-color: rgba(255, 255, 255, 0.8);
            border-radius: 12px 12px 0 0; /* <-- aktivni tab ima malo jače zaobljenje */
        }

/* --- Novi glavni panel ispod tabova --- */
.search-panel[b-laypssefw2] {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 0 0 14px 14px;
    padding: 16px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

/* --- Subnav unutar panela --- */
.subnav[b-laypssefw2] {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 12px;
}

.subnav-link[b-laypssefw2] {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 10px;
}

    .subnav-link.active[b-laypssefw2] {
        color: #0d6efd;
        font-weight: 500;
    }

/* --- Card polja --- */
.search-panel .card[b-laypssefw2] {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.search-panel[b-laypssefw2] {
    z-index: 10;
    position: relative;
}

/* _content/IDOMLeisureIBE/Components/SearchPanel/TravelerSelector.razor.rz.scp.css */
.traveler-host[b-9pfcmqohar] {
    position: relative;
    overflow: visible;
}

.traveler-popup[b-9pfcmqohar] {
    position: absolute;
    top: 44px;
    left: 0;
    width: 420px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    z-index: 1100;
}

.traveler-scroll[b-9pfcmqohar] {
    max-height: 460px;
    overflow-y: auto;
}
