:root {
    --anthracite: #393E46;
    --transparent-anthracite: rgba(57, 62, 70, 0.3);
    --button-anthracite: #272c30;
    --button-anthracite-darker: #202226;
    --light-gray: #F2F2F2;
    --accent-color: #FFD369;
}

body {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    font-family: 'Arial', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    background-color: var(--light-gray);
}
.logo{
    width: 130px;
    height: 100px;
}
.navbar {
    background-color: var(--anthracite);
}

.navbar a {
    color: #FFFFFF;
}

.navbar a:hover {
    color: var(--button-anthracite-darker);
}

.hero-section {
    background-image: url('/img/runner.jpeg');
    background-size: cover;
    background-position: center 61%;
    background-repeat: no-repeat;
    color: #FFFFFF;
    padding: 50px 20px;
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.main-content {
    flex: 1;
}

footer {
    background-color: var(--anthracite);
    color: var(--light-gray);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}


.btn-primary, .btn-secondary {
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}

.language-selector {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.selected-language img {
    width: 24px;
    border-radius: 50%;
}

.navbar .dropdown-toggle img.flag-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.dropdown-menu img.flag-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
    transition: transform 0.2s ease-in-out;
}

.dropdown-menu img.flag-icon:hover {
    transform: scale(1.1);
    border-color: #007bff;
}

#navbarNav ul.dropdown-menu > li {
    list-style: none;
    padding: 5px;
    margin: 0;
}

#languageDropdownMenu {
    margin-top:5px;
    margin-left:5px;
}
.nav-item ul#dropdown-menu,
.dropdownSelector {
    background-color: var(--anthracite);
}
::marker {
    font-size: 0px;
}
ul.dropdownSelector li:hover {
    background-color: var(--button-anthracite-darker);
}
ul.dropdownSelector li a:hover {
    text-decoration: none;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}
ul.dropdownSelector li a {
    text-decoration: none;
    color: white;

}
.btn-logout{
    width:100%
}

.select2-selection {
    padding-top:5px;
}

.card-body h3 {
    font-size: 22px;
}

/*#scrolling-container {*/
/*    position: relative;*/
/*    width: 100%; !* Širina cijelog ekrana *!*/
/*    height: 250px; !* Visina kontejnera *!*/
/*    overflow: hidden; !* Sakrij elemente izvan okvira *!*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/* Tekstualni blokovi */
/*.scrolling-text {*/
/*    position: absolute; !* Za animaciju *!*/
/*    white-space: nowrap; !* Osigurava da tekst ostaje u jednoj liniji *!*/
/*    font-size: 20px; !* Veličina fonta *!*/
/*    padding: 10px 20px; !* Dodajte padding oko teksta *!*/
/*    color: #fff;*/
/*    border-radius: 5px; !* Zaobljeno pozadine *!*/
/*    display: none; !* Početno skriveni *!*/
/*}*/

