﻿html {
    overflow-y: scroll;
}

.hall-of-fame-tabs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto;
    border: 1px solid #2f2f2f;
    background: #ffffff;
}

.hall-of-fame-tab {
    display: inline-block;
    min-width: 130px;
    padding: 10px 18px;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    background: #ffffff;
    border-left: 1px solid #2f2f2f;
}

.hall-of-fame-tab:first-child {
    border-left: 0;
}

.hall-of-fame-tab:hover,
.hall-of-fame-tab:focus {
    color: #000000;
    text-decoration: none;
    background: #f2f2f2;
}

.hall-of-fame-tab.is-active {
    color: #ffffff;
    background: #2f2f2f;
}

.hall-of-fame-season-selector {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    z-index: 20;
}

.hall-of-fame-season-selector.is-disabled {
    pointer-events: none;
    opacity: 0.65;
}

.hall-of-fame-custom-select {
    position: relative;
    display: inline-block;
    min-width: 86px;
    text-align: left;
}

.hall-of-fame-season-toggle {
    width: 100%;
    height: 32px;
    padding: 0 26px 0 11px;
    border: 1px solid #666666;
    border-radius: 0;
    color: #222222;
    font-size: 13px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    background: #ffffff;
    cursor: pointer;
    position: relative;
}

.hall-of-fame-season-toggle:after {
    content: "";
    position: absolute;
    top: 13px;
    right: 10px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #333333;
}

.hall-of-fame-season-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #666666;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.hall-of-fame-custom-select.is-open .hall-of-fame-season-menu {
    display: block;
}

.hall-of-fame-season-option {
    display: block;
    padding: 8px 11px;
    color: #333333;
    font-size: 13px;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    background: #ffffff;
}

.hall-of-fame-season-option:hover,
.hall-of-fame-season-option:focus,
.hall-of-fame-season-option.is-selected {
    color: #ffffff;
    text-decoration: none;
    background: #1F67B3;
}

.hall-of-fame-season-period {
    margin-top: 6px;
    color: #777777;
    font-size: 12px;
    line-height: 1.4;
}

.hall-of-fame-grid-section {
    width: 820px;
    margin: 0 auto;
}

.hall-of-fame-party-section {
    text-align: left;
}

.hall-of-fame-party-challenge-section {
    margin-top: 36px;
}

.hall-of-fame-party-filter {
    width: 820px;
    margin: 0 auto 10px;
    color: #555555;
    font-size: 13px;
    line-height: 1.4;
    text-align: right;
}

.hall-of-fame-party-filter-label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.hall-of-fame-party-filter .cb input[type=checkbox] + span:before {
	margin-left: 0;
}

.hall-of-fame-party-filter .cb input[type=checkbox]:checked + span:before {
	background: #ffffff;
}

.hall-of-fame-party-filter .cb input[type=checkbox]:checked + span:after {
	content: "";
	position: absolute;
	left: 4px;
	top: 5px;
	width: 7px;
	height: 4px;
	border-left: 2px solid #e67100;
	border-bottom: 2px solid #e67100;
	transform: rotate(-45deg);
}

.hall-of-fame-party-subtitle {
    margin: 0 0 10px 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
}

.hall-of-fame-party-member-trigger {
    cursor: pointer;
}

.commonList tr.hall-of-fame-party-member-trigger:hover td,
.commonList tr.hall-of-fame-party-member-trigger:focus td {
    background-color: rgba(13, 119, 197, 0.12) !important;
}

.commonList tr.hall-of-fame-party-inactive-row td {
    color: #777777;
    background-color: #fafafa;
}

.commonList tr.hall-of-fame-party-inactive-row:hover td,
.commonList tr.hall-of-fame-party-inactive-row:focus td {
    background-color: rgba(13, 119, 197, 0.12) !important;
}

.hall-of-fame-party-inactive-badge {
    display: inline-block;
    min-width: 34px;
    padding: 2px 6px;
    color: #777777;
    font-size: 11px;
    line-height: 1.3;
    border: 1px solid #d9d9d9;
    background: #f4f4f4;
}

.hall-of-fame-party-record {
    white-space: nowrap;
}

.hall-rank-history-popover {
    z-index: 2300;
}

.tooltip-mark-popup {
    z-index: 2400;
}

.hall-of-fame-party-popover {
    position: absolute;
    display: none;
    z-index: 2100;
    width: 330px;
    padding: 14px 16px 14px;
    color: #f5f7fb;
    text-align: left;
    border: 1px solid rgba(255, 211, 106, 0.28);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.hall-of-fame-party-popover-header {
    min-width: 0;
}

.hall-of-fame-party-popover-title {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    color: #4D97E5;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hall-of-fame-party-popover-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.hall-of-fame-party-popover-status {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 7px;
    flex: 0 0 auto;
    color: #ffd36a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid rgba(255, 211, 106, 0.42);
    border-radius: 10px;
    background: rgba(255, 211, 106, 0.1);
}

.hall-of-fame-party-popover-status.is-inactive {
    color: rgba(255, 255, 255, 0.68);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.hall-of-fame-party-popover-body {
    margin-top: 12px;
}

.hall-of-fame-party-popover-member {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.5;
    white-space: nowrap;
}

.hall-of-fame-party-popover-member + .hall-of-fame-party-popover-member {
    margin-top: 4px;
}

.hall-of-fame-party-popover-member-icon {
    display: block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.hall-of-fame-party-popover-member-icon.is-empty {
    width: 24px;
    height: 24px;
}

.hall-of-fame-party-popover-member-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hall-of-fame-party-popover-account-trigger {
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
}

.hall-of-fame-party-popover-account-trigger:hover,
.hall-of-fame-party-popover-account-trigger:focus {
    color: #ffd36a;
    text-decoration: underline;
    outline: none;
}

.hall-of-fame-party-popover-state {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.5;
}

.hall-of-fame-party-popover-recent {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hall-of-fame-party-popover-recent-title {
    margin-bottom: 6px;
    color: rgba(255, 211, 106, 0.9);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.hall-of-fame-party-popover-recent-info {
    margin: -1px 0 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.5;
}

.hall-of-fame-party-popover-recent-time-limit {
    color: #ffd36a;
    font-weight: 700;
    white-space: nowrap;
}

.hall-of-fame-party-popover-recent-game {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    line-height: 1.6;
}

.hall-of-fame-party-popover-recent-game.is-active-window {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.hall-of-fame-party-popover-recent-game.is-outside-window {
    color: rgba(255, 255, 255, 0.42);
    font-weight: 400;
}

.hall-of-fame-party-popover-recent-empty {
    margin-top: 12px;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
