.player-growth-page {
    width: 100%;
    padding: 18px 20px 28px;
}

.player-growth-heading {
    min-height: 58px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    background: #0b1728;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 5px 5px 0 0;
}

.player-growth-heading h1 {
    margin: 0;

    color: #ffffff;

    font-size: 25px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.player-growth-heading__season {
    color: var(--ffo-gold);

    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.player-growth-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    background: #0d1a2c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.player-growth-tabs__button {
    position: relative;

    min-height: 54px;
    padding: 0 16px;

    appearance: none;

    background: transparent;
    border: 0;

    color: #b9c4d3;

    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;

    cursor: pointer;
}

.player-growth-tabs__button:hover,
.player-growth-tabs__button:focus-visible {
    background: #101d31;
    color: #ffffff;
    outline: none;
}

.player-growth-tabs__button.is-active {
    background: #101d31;
    color: var(--ffo-gold);
}

.player-growth-tabs__button.is-active::after {
    content: "";

    position: absolute;
    right: 32px;
    bottom: 0;
    left: 32px;

    height: 3px;

    background: var(--ffo-gold);
}

.player-growth-content {
    padding: 12px;

    background: #07111f;
    border-radius: 0 0 5px 5px;
}

.player-growth-button {
    min-height: 40px;
    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    appearance: none;

    background: #162b6f;
    border: 0;
    border-radius: 3px;

    color: #ffffff;

    font-family: inherit;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.025em;

    cursor: pointer;
}

.player-growth-button:hover,
.player-growth-button:focus-visible {
    background: #1c3689;
    color: #ffffff;
    outline: none;
}

.player-growth-button:disabled {
    opacity: 0.42;
    cursor: default;
}

.player-growth-button:disabled:hover {
    background: #162b6f;
}

.player-growth-button--danger {
    background: #3c1d26;
    color: #f2798f;
}

.player-growth-button--danger:hover,
.player-growth-button--danger:focus-visible {
    background: #542431;
    color: #ffffff;
}

.player-growth-button--danger:disabled:hover {
    background: #3c1d26;
    color: #f2798f;
}

.player-growth-widget {
    margin-bottom: 10px;
    padding: 14px;

    background: #0b1728;
    border-top: 3px solid var(--ffo-gold);
    border-radius: 4px;
}

.player-growth-widget__header {
    min-height: 48px;
    margin: -2px 0 12px;
    padding-bottom: 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.player-growth-widget__header h2 {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.player-growth-widget__header p {
    margin: 5px 0 0;

    color: #9eabc0;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
}

.player-growth-search__label {
    display: block;

    margin-bottom: 7px;

    color: var(--ffo-gold);

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.player-growth-search__input {
    width: 100%;
    height: 46px;
    padding: 0 13px;

    appearance: none;

    background: #07111f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;

    outline: none;
}

.player-growth-search__input::placeholder {
    color: #718096;
}

.player-growth-search__input:focus {
    border-color: rgba(240, 197, 69, 0.66);
}

.player-growth-search__input:disabled {
    opacity: 0.55;
}

.player-growth-search-results {
    display: grid;
    gap: 6px;

    margin-top: 9px;
}

.player-growth-search-result {
    min-height: 64px;
    padding: 9px 10px;

    display: grid;
    grid-template-columns: minmax(210px, 1fr) minmax(280px, 1.35fr) auto;
    align-items: center;
    gap: 12px;

    background: #101d31;
    border-left: 3px solid transparent;
    border-radius: 4px;
}

.player-growth-search-result:hover {
    background: #14243b;
    border-left-color: var(--ffo-gold);
}

.player-growth-player-name {
    overflow: hidden;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.15;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.player-growth-player-meta {
    margin-top: 5px;

    color: #9eabc0;

    font-size: 10px;
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.player-growth-skill-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.player-growth-skill-tag {
    min-height: 27px;
    padding: 0 8px;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    background: #07111f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;

    color: #9eabc0;

    font-size: 10px;
    line-height: 1;
    font-weight: 800;
}

.player-growth-skill-tag strong {
    color: #ffffff;
}

.player-growth-search-message,
.player-growth-empty-state {
    min-height: 72px;
    padding: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #101d31;
    border-radius: 4px;

    color: #aeb8cc;

    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
}

.player-growth-search-message.is-error {
    color: #f2798f;
}

.player-growth-filters {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 135px 235px 118px;
    align-items: end;
    gap: 8px;

    margin-bottom: 10px;
    padding: 10px;

    background: #0d1a2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.player-growth-filter {
    min-width: 0;
}

.player-growth-filter label {
    display: block;

    margin-bottom: 7px;

    color: var(--ffo-gold);

    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.player-growth-filter input,
.player-growth-filter select {
    width: 100%;
    height: 42px;
    padding: 0 11px;

    appearance: none;

    background: #07111f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;

    color: #ffffff;

    font-family: inherit;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    outline: none;
}

.player-growth-filter select {
    appearance: auto;
}

.player-growth-filter input::placeholder {
    color: #718096;
}

.player-growth-filter input:focus,
.player-growth-filter select:focus {
    border-color: rgba(240, 197, 69, 0.66);
}

.player-growth-button--filter-clear {
    min-height: 42px;
    padding: 0 10px;

    background: #101d31;
    border: 1px solid rgba(255, 255, 255, 0.10);

    color: #b9c4d3;
}

.player-growth-button--filter-clear:hover,
.player-growth-button--filter-clear:focus-visible {
    background: #162b6f;
    border-color: #162b6f;

    color: #ffffff;
}

.player-growth-button--filter-clear:disabled:hover {
    background: #101d31;
    border-color: rgba(255, 255, 255, 0.10);

    color: #b9c4d3;
}

.player-growth-tracker-count {
    margin-bottom: 9px;

    color: #9eabc0;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}

.player-growth-tracker-count strong {
    color: var(--ffo-gold);
    font-size: 14px;
    font-weight: 900;
}

.player-growth-table-wrap {
    width: 100%;
    overflow: hidden;

    background: #07111f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.player-growth-table {
    width: 100%;

    border-collapse: collapse;
    table-layout: fixed;
}

.player-growth-table th,
.player-growth-table td {
    padding: 10px 8px;

    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    text-align: center;
    vertical-align: middle;
}

.player-growth-table th:last-child,
.player-growth-table td:last-child {
    border-right: 0;
}

.player-growth-table tbody tr:last-child td {
    border-bottom: 0;
}

.player-growth-table th {
    background: #101d31;

    color: var(--ffo-gold);

    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.player-growth-table tbody tr:hover {
    background: #0d1a2c;
}

.player-growth-table th:first-child,
.player-growth-table td:first-child {
    width: 245px;
    text-align: left;
}

.player-growth-table th:nth-child(2),
.player-growth-table td:nth-child(2) {
    width: 48px;
}

.player-growth-table th:nth-child(3),
.player-growth-table td:nth-child(3),
.player-growth-table th:nth-child(4),
.player-growth-table td:nth-child(4),
.player-growth-table th:nth-child(5),
.player-growth-table td:nth-child(5),
.player-growth-table th:nth-child(6),
.player-growth-table td:nth-child(6) {
    width: 105px;
}

.player-growth-table th:nth-child(7),
.player-growth-table td:nth-child(7) {
    width: 72px;
}

.player-growth-table th:last-child,
.player-growth-table td:last-child {
    width: 78px;
}

.player-growth-player-line {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 8px;
}

.player-growth-team {
    min-width: 38px;
    min-height: 24px;
    padding: 0 6px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #101d31;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 3px;

    color: #ffffff;

    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.player-growth-player-line strong {
    min-width: 0;
    overflow: hidden;

    color: #ffffff;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.player-growth-row-meta {
    margin: 5px 0 0 46px;

    color: #8491a5;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
}

.player-growth-warning {
    margin: 5px 0 0 46px;

    color: #f2798f;

    font-size: 9px;
    line-height: 1.25;
    font-weight: 800;
    white-space: normal;
}

.player-growth-position {
    min-width: 32px;
    min-height: 24px;
    padding: 0 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #101d31;
    border: 1px solid rgba(240, 197, 69, 0.28);
    border-radius: 3px;

    color: #ffffff;

    font-size: 9px;
    line-height: 1;
    font-weight: 900;
}

.player-growth-skill-route {
    color: #9eabc0;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
}

.player-growth-value {
    display: block;

    margin-top: 4px;

    color: #aeb8cc;

    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

.player-growth-value.is-positive {
    color: #65dc98;
}

.player-growth-value.is-negative {
    color: #f2798f;
}

.player-growth-value--total {
    margin-top: 0;
    font-size: 13px;
}

.player-growth-remove {
    min-height: 30px;
    padding: 0 9px;

    background: transparent;
    border: 1px solid rgba(242, 121, 143, 0.32);

    color: #f2798f;
}

.player-growth-remove:hover,
.player-growth-remove:focus-visible {
    background: #3c1d26;
    color: #ffffff;
}

.player-growth-note {
    margin: 3px 2px 0;

    color: #718096;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
}

.player-growth-sr-only {
    position: absolute;

    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
    border: 0;
}
