.navbar {
	--bs-navbar-padding-y : 0px;
	--bs-navbar-brand-padding-y: 0px;
	--bs-navbar-brand-font-size: 0.9rem;
}

/* Stats-area START */

.stats-area {
	margin: 1rem;
	padding: 1rem;
}

.table-icon {
    height: 30px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.stats-area td.value {
	text-align: end;
	padding-right: 2rem!important;
}

.equal-height-tables {
	justify-content: center;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
}

.equal-height-tables > .table-container {
    display: flex;
    flex-direction: column;
}

tr.minus-points td {
	background-color: #800000;
}

tr.plus-points td {
	background-color: #008000;
}

tr.equal-points td {
	background-color: #808080;
}
/* Stats-area END */



/* Checkbox-button START */

.checkbox-btn {
    display: none;
}

.checkbox-btn + label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 2px 5px;
    margin: 2px;

    font-size: 0.8rem;
    font-weight: 600;

    border-radius: 6px;
    cursor: pointer;
    user-select: none;

    background: #666;
    color: white;

    transition:
        background 0.15s ease,
        transform 0.05s ease;
}

.checkbox-btn + label:hover {
    background: #777;
}

.checkbox-btn + label:active {
    transform: scale(0.96);
}

.checkbox-btn:checked + label {
    background: #1fa34a;
}

.checkbox-btn:checked + label:hover {
    background: #24b652;
}

/* Checkbox-button END */



/* Table START */

.table-compact {
    border-collapse: collapse;
	border-bottom: 1px solid;
}

.table-compact tbody tr {
    border: none!important;
}

.table-compact tbody tr td {
    border: none!important;
	padding: 0.1rem 0.25rem;
}

.table-compact thead tr {
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.table-tdpadding-1 td {
	padding-left: 1rem;
    padding-right: 1rem;
}

/* Table END */



/* Server-choose START */

.pl-ch-container {
	width: 100%;

	display: flex;
	align-items: center;
	flex-wrap: wrap;

	background-color: var(--bg-og-3);
}

.pl-ch-title {
	padding: 4px 20px 4px 20px;

	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
}

.pl-search-container {
	position: relative;
}
	
 .flag-dropdown {
    position: relative;
    width: 12rem;
    user-select: none;
	margin: 0px 20px;
  }

  .flag-dropdown-toggle {
    background-color: #2d3742;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flag-dropdown-toggle img {
    margin-right: 8px;
  }

  .flag-dropdown-list {
    position: absolute;
    width: 100%;
    background-color: #2d3742;
    border-radius: 6px;
    margin-top: 4px;
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
  }

  .flag-dropdown-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .flag-dropdown-option:hover {
    background-color: #3c4858;
  }

  .flag-dropdown-option img {
    margin-right: 8px;
  }
  
  .server-dropdown {
	  font-size: 0.8rem;
	  margin: 0px 20px;
	  padding: 0px 20px;
	  width: 15rem;
	  color: white;
	  background-color: #2d3742;      
  }
  
  .server-dropdown::placeholder {
	color: var(--text-og-2);
  }

.server-dropdown option {
	background-color: #2d3742;
	color: white;
}

.server-dropdown:focus {
  background-color: #333; 
  color: white; 
  outline: none; 
}

.server-choose-span {

}

#comparebtn {
  padding: 0px 20px;
}

#comparebtn:focus, #comparebtn:active , #comparebtn:hover {
	--background-color: var(--bg-og-2);
}

#searchInput {
	color: white;
	padding-left: 1rem;
}

/* Server-choose END  */



/* Charts START */

.chart-container {
    position: relative;
    height: 250px;
    width: 100%;
}

/* Charts END */



/* Menu bar START */

.menuA-container {
	width: 100%;

	display: flex;
	align-items: center;
	flex-wrap: wrap;

	background-color: var(--bg-og-1);
}

.menuB-container {
	width: 100%;

	display: flex;
	align-items: center;
	flex-wrap: wrap;

	background-color: var(--bg-og-2);
}

.menuA-title, .menuB-title {
	padding: 4px 20px 4px 20px;

	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
}

.menuA-list, .menuB-list {
	margin: 0;
	padding: 0;

	list-style: none;

	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;

	flex: 1;
}

.menuA-list li, .menuB-list li {
	margin: 0;
	padding: 0;
}

.menuA-a, .menuB-a {
	display: block;

	padding: 4px 20px 4px 20px;

	color: #fff;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.menuA-a.active {
	color: #606060;
}

.menuB-a.active {
	color: #606060;
}

/* Menu bar END */