@import url('https://fonts.googleapis.com/css?family=Roboto');

.navbar{
	font-family: 'Roboto', sans-serif;
}
.navbar-mainbg{
    z-index: auto;
	background-color: #33ff14;
	padding: 0px;
	border-radius: 12px;
	/* box-shadow: 0 0 10px #33ff14, 0 0 40px #33ff14,
	0 0 80px #33ff14; */
}
.nav-item{
	padding: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: medium;
}
.nav-item.active{
    text-decoration:solid;
    color:black;
    background-color: #FFBF00;
    box-shadow: 0 0 10px #FFBF00, 0 0 40px #FFBF00,
	0 0 80px #FFBF00;
}
.nav-item:hover{
    text-decoration:solid;
    color:black;
    background-color: #FFBF00;
    box-shadow: 0 0 10px #FFBF00, 0 0 40px #FFBF00,
	0 0 80px #FFBF00;
}
.nb-logo{
    height: 40px;
    width: auto;
}

.search-nav-item {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

#search-input {
    width: 100%;
    padding: 8px 15px;
    border: 2px solid #FF5C00;
    border-radius: 20px;
    background-color: #1a1a1a;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

#search-input::placeholder {
    color: #888;
}

#search-input:hover,
#search-input:focus {
    box-shadow: none;
}

.search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background-color: #111;
    border: 2px solid #FF5C00;
    border-radius: 10px;
    max-height: 350px;
    overflow: hidden;
    overflow-y: auto;
    z-index: 9999;
}

.search-dropdown.show {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    border-bottom: 1px solid #333;
    text-decoration: none;
    color: white;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.search-result-info {
    display: flex;
    flex-direction: column;
}

.search-result-name {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
}

.search-result-platform {
    font-size: 12px;
    color: #aaa;
}

.search-result-price {
    font-size: 13px;
    color: #33ff14;
    margin-top: 2px;
}

.search-no-results {
    justify-content: center;
    color: #888;
    font-style: italic;
    cursor: default;
}

.search-no-results:hover {
    background-color: transparent;
    color: #888;
}

.navbar-toggler {
    border: 2px solid #33ff14;
    background-color: rgba(0, 0, 0, 0.6);
    margin-right: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.navbar-toggler:hover {
    box-shadow: 0 0 10px #33ff14, 0 0 30px #33ff14;
    background-color: rgba(0, 0, 0, 0.8);
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 10px #33ff14, 0 0 20px #33ff14;
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%2333ff14' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .header-container .navbar .container-fluid {
        flex-wrap: wrap;
        padding-right: 0;
    }
    .search-nav-item {
        flex: 0 0 100%;
        order: 10;
        padding: 3px 10px;
        justify-content: center;
    }
    .search-nav-item .nav-item {
        padding: 0;
    }
    .search-wrapper {
        max-width: 100%;
    }
    #search-input {
        font-size: 16px;
        padding: 8px 14px;
    }
    .navbar-mainbg .navbar-collapse {
        flex-direction: column;
    }
    .nav-label {
        display: inline;
    }
    .navbar-mainbg .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .navbar-mainbg .navbar-nav a {
        flex: none;
        text-align: left;
    }
    .navbar-mainbg .navbar-nav .nav-item {
        padding: 8px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .navbar-mainbg .navbar-nav .nb-logo {
        height: 28px;
    }
    .nb-mobile-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        white-space: nowrap;
    }
    .nb-mobile-logo {
        height: 28px;
    }
    .nb-mobile-name {
        color: #111;
        font-weight: 700;
        font-size: 16px;
    }
}