/*
Theme Name:     Foxiz child
Template:      	foxiz
Theme URI:      https://foxiz.themeruby.com
Author:         Theme-Ruby
Author URI:     https://themeforest.net/user/theme-ruby/portfolio/
Description:    Make your modifications to Foxiz in this child theme.
Version:        1.0
Tags:           custom-background, custom-menu, featured-images, theme-options, custom-colors, translation-ready, threaded-comments, translation-ready
License:        Themeforest Licence
License URI:    https://themeforest.net/licenses/standard
*/

/* Your CSS code goes here
-------------------------------------- */
#back-top{
  margin-bottom:58px !important;
}

/* Title */
.nba-trade-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}


/* Label */
.nba-trade-dropdown-wrap label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

/* Select box */
.nba-trade-select select {
    padding: 12px 42px 12px 14px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    background-color: #fff;
    color: #000;
    appearance: none;
    cursor: pointer;
}

/* Focus state */
.nba-trade-select select:focus {
    outline: none;
    border-color: #1f83c7;
    box-shadow: 0 0 0 2px rgba(31, 131, 199, 0.15);
}

/* Dropdown arrow */
.nba-trade-select::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #555;
    pointer-events: none;
}

/* Options */
.nba-trade-select select option {
    background-color: #ffffff;
    color: #000;
    padding: 10px;
    font-size: 14px;
}

.nba-trade-select select option:hover {
    background-color: #1f83c7;
    color: #ffffff;
}

.nba-trade-dropdown {
    position: relative;
    width: 260px;
    font-size: 15px;
}

.nba-trade-selected {
    background: #000;
	border-radius: 9px;
    padding: 12px 14px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
	color: #fff;
	font-weight: 700;
}

.nba-trade-selected .arrow {
    font-size: 12px;
}

.nba-trade-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    border: 1px solid #ddd;
    max-height: 260px;     
    overflow-y: auto;       
    z-index: 999;
}

.nba-trade-options.is-open {
    display: block;
}


.nba-trade-options li {
    padding: 7px 14px;
    cursor: pointer;
    color: #000;
}

/* Scrollbar */
/* Chrome / Edge / Safari */
.nba-trade-options::-webkit-scrollbar {
    width: 6px;
}

.nba-trade-options::-webkit-scrollbar-track {
    background: #000; /* dropdown background */
}

.nba-trade-options::-webkit-scrollbar-thumb {
    background-color: #1F82CC;
    border-radius: 4px;
}

.nba-trade-options::-webkit-scrollbar-thumb:hover {
    background-color: #3a9be5;
}

/* Firefox */
.nba-trade-options {
    scrollbar-width: thin;
    scrollbar-color: #1F82CC #000;
}


/* === Parent Flex === */
.nba-trade-header-flex {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

/* Dropdown */
.nba-trade-dropdown {
    position: relative;
    width: 100%;
    font-size: 15px;
}

.nba-trade-selected .arrow {
    font-size: 14px;
    padding-left: 17px;
}

.nba-trade-options li {
    padding: 8px 14px;
    cursor: pointer;
    color: #fff;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.nba-trade-options li:hover {
    color: #1F82CC;
}

/* === RIGHT === */
.nba-trade-right {
    flex: 1;
    background: #ffffff;
	width: 100%;
	padding: 8px;
}

/* Popular title */
.popular-rumors-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 0.6px;
}

/* Grid */
.popular-rumors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
	gap: 5px;
}

/* Items */
.popular-rumor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #000;
    border-radius: 50px;
    transition: all .2s ease;
	margin-bottom: 10px;
}

.popular-rumor-item:hover {
    color: #1F82CC;
    transform: translateY(-1px);
}


/* === Mobile === */
@media (max-width: 768px) {
    .nba-trade-header-flex {
        flex-direction: column;
        gap: 18px;
    }

    .nba-trade-left {
        width: 100%;
    }

    .popular-rumors-grid {
        grid-template-columns: repeat(2, 1fr);
		gap: 10px;
    }
	
	.popular-rumor-item{
		width: 100%;
	}
}

@media (min-width: 768px) {
	
	.nba-trade-left{
		width: 32%;
	}
	
}

@media (max-width: 400px) {
	.navbar-right{
		padding-left: 25px;
	}
	
	.popular-rumor-item{
		font-size: 12px;
	}
}

.nba-trade-left{	
    width:auto;
}
@media (max-width: 768px) {	
    .nba-trade-dropdown {	
        	width:100%;	
     }}