﻿body {
    background-color: white;
    color: black;
}

.navbar, .footer {
    background-color: forestgreen;
    color: white;
}

    .navbar a, .footer a, .category-link {
        color: white;
    }

.content, .sidebar {
    padding: 20px;
}

.sidebar {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .sidebar {
        background-color: transparent;
    }
}

.list-group {
    box-shadow: 0px 11px 23px 5px rgba(0,0,0,0.34);
}

.list-group-item {
    background-color: rgba(255,255,255,0.7);
    border: 0;
}

.list-group-item-bold {
 font-weight:700;
}

.list-group-item-line {
    border-bottom:solid;
    border-bottom-color:darkgrey;
    border-bottom-width:thin;
    padding-top:1em;
}

.btn-toolbar {
    margin-top: 10px;
}

img {
    float: left;
    margin-right: 15px;
    height: 128px;
    width: 128px;
}

.container2 {
    margin-top:20px;
    justify-content: center;
    text-align: center;
    align-items:center;
}
.navbar-brand {
    margin-left: 1rem; /* Odsadenie loga od kraja */
}

/* Pre malé zariadenia môžete chcieť menšie odsadenie */
@media (max-width: 768px) {
    .navbar-brand {
        margin-left: 0.5rem;
    }
}

#searchResults {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 400px; /* vertikálne ohraničenie */
    overflow-y: auto; /* vertikálny scrollbar ak treba */
    overflow-x: hidden; /* skryje horizontálny */
    width: 100%;
}

    #searchResults .dropdown-item {
        white-space: normal; /* zabalí dlhý text */
        overflow: hidden;
        text-overflow: ellipsis; /* prípadne pridať ak chceš ... */
        display: block;
    }

#searchResults a.dropdown-item {
    color: #212529 !important;
}