@import url(assets/images/icons/icon.css);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Atyp Display";
    src: url("./assets/fonts/AtypDisplay-Bold.woff") format("woff"),
        local("./assets/fonts/AtypDisplay-Bold.woff");
    font-weight: 700;
}

@font-face {
    font-family: "Atyp Display";
    src: url("./assets/fonts/AtypText-Semibold.woff") format("woff"),
        local("./assets/fonts/AtypText-Semibold.woff");
    font-weight: 600;
}

@font-face {
    font-family: "Atyp Display";
    src: url("./assets/fonts/AtypText-Medium.woff") format("woff"),
        local("./assets/fonts/AtypText-Medium.woff");
    font-weight: 500;
}
@font-face {
    font-family: "Atyp Display";
    src: url("./assets/fonts/AtypText-Regular.woff") format("woff"),
        local("./assets/fonts/AtypText-Regular.woff");
    font-weight: 400;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}

body {
    background: #020202;
    font-family: "Atyp Display";
}

/* Admin Background with fon.png */
.adminn-section,
.admin-wrapper {
    position: relative;
    min-height: 100vh;
}

.admin-bg-image {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/fon.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 1200px) {
    .admin-bg-image {
        width: 40%;
        opacity: 0.25;
    }
}

@media (max-width: 768px) {
    .admin-bg-image {
        display: none;
    }
}

.admin-wrapper {
    overflow: hidden;
}

.a-block__title {
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
    color: #ffffff;
}
.a-block__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: #ffffff66;
}
.page-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #ffffff;
}
.page-sub-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff66;
    text-align: start;
    margin-top: 20px;
}
.text-wrap {
    display: block;
}

.admin-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.admin-header {
    padding: 60px 0 0;
}
.header-profile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-body {
    padding: 20px 78px;
    box-shadow: 0px 0px 40px 0px #ffffff08 inset;
    backdrop-filter: blur(100px);
    background: #ffffff0d;
    position: relative;
    z-index: 2;
    border-radius: 200px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.admin-logo {
    display: flex;
}
.admin-logo img {
    max-width: 40px;
}

.header-menu-list {
    display: flex;
    align-items: center;
    column-gap: 54px;
    row-gap: 20px;
    flex-wrap: wrap;
}
.header-menu-list li {
    display: flex;
}
.header-menu-list li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff66;
    transition: 0.4s;
}
.header-menu-list li a:hover {
    color: white;
}

.admin-header-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
}
.admin-header-bg img {
    width: 100%;
    height: 100%;
    border-radius: 200px;
}
.icon-user {
    font-size: 18px;
    background: #ffffff66;
    transition: 0.4s;
    cursor: pointer;
}
.icon-user:hover {
    background: white;
}

.admin-cnt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 63px 15px;
}
.admin-cnt-block {
    max-width: 600px;
    width: 100%;
    padding: 30px 40px;
    background: #0a0a0a;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.back-link {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.back-link:hover span {
    color: white;
}
.back-link:hover i {
    background: white;
}
.back-link span {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    transition: 0.4s;
    color: #ffffff66;
}
.back-link i {
    background: #ffffff66;
    font-size: 14px;
    transition: 0.4s;
}

.icon-arrow {
    font-size: 10px;
    background: #ffffff66;
}
.generator-titiles h2,
p {
    text-align: center;
}
.generator-titiles p {
    margin-top: 27px;
}

.generator-kod-inputs {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.generator-kod-inputs label {
    position: relative;
    z-index: 2;
}
.generator-kod-inputs span {
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    background: #ffffff66;
    border-radius: 50%;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.code-input {
    width: 80px;
    height: 100px;
    border: 1px solid #ffffff33;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    text-align: center;
    color: #ffffff;
    transition: border-color 0.2s ease;
    border-radius: 10px;
    outline: none;
    background: #0a0a0a;
}
.code-input:focus {
    border-color: #2bf866;
}

.generator-kod-tools {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.a-btn__green {
    padding: 25px;
    width: 100%;
    background: linear-gradient(90deg, #2bf866 0%, #19923c 100%);
    border-radius: 7px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: #000000;
    cursor: pointer;
    transition: 0.4s;
    border: none;
}
.a-btn__green:hover {
    opacity: 0.7;
}
.a-btn__black {
    width: 100%;
    padding: 25px;
    cursor: pointer;
    background: #ffffff08;
    border-radius: 7px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    outline: none;
    border: none;
    color: #ffffff66;
    border: none;
    transition: 0.4s;
}

.a-btn__black:hover {
    opacity: 0.8;
}

.authorization-titles h2 {
    text-align: center;
}
.authorization-titles p {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: #ffffff66;
    text-align: center;
    margin-top: 27px;
}
.authorization-titles p a {
    font-weight: 500;

    font-size: 20px;
    line-height: 100%;
    color: #ffffff66;
    text-align: center;
    text-decoration: underline;
    transition: 0.4s;
}
.authorization-titles p a:hover {
    color: white;
}

.authorization-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.authorization-inputs label {
    width: 100%;
    height: 64px;
    position: relative;

    display: flex;
    align-items: center;
    gap: 15px;
}
.authorization-inputs label input {
    outline: none;
    background: #ffffff08;
    width: 100%;
    height: 100%;
    padding: 20px 30px 20px 84px;
    border: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    border: 1px solid transparent;
    color: #ffffff66;
    transition: all 0.3s;
    border-radius: 7px;
}
.authorization-inputs label input:focus {
    border: 1px solid #2bf866;
}
.authorization-inputs label i {
    position: absolute;
    top: 20px;
    left: 30px;
}

.icon-user2 {
    background: white;
    font-size: 18px;
}
.icon-key {
    font-size: 24px;
    background: white;
}
.wrong-clue {
    padding: 10px 20px;
    background: #ff46461a;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
    width: fit-content;
    margin: 20px auto 0;
}
.icon-priority {
    background: #ff4646;
    font-size: 16px;
}
.wrong-clue span {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #ff4646;
}
.my-products-titiles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.green-text {
    color: #2bf866;
    font-weight: 600;
}
.medium-text {
    font-weight: 500;
}
.my-products-section {
    margin-top: 70px;
}
.my-products-titiles h2 {
    text-align: center;
}

.my-products-body {
    margin-top: 70px;
}

.my-products-cnt {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.search-block label {
    position: relative;
    z-index: 2;
    width: 100%;
}
.search-block label input {
    padding: 30px 20px;
    outline: none;
    background: #0a0a0a;
    border: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    border: 1px solid transparent;
    color: #ffffff66;
    transition: all 0.3s;
    border-radius: 7px;
    width: 100%;
    border: 1px solid transparent;
    transition: all 0.3s;
}
.search-block label input:focus {
    border: 1px solid #2bf866;
}

.icon-search {
    background: #ffffff66;
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 2px;
    cursor: pointer;
    transition: 0.4s;
}
.icon-search:hover {
    background: white;
}

.products-select-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}
.products-select-item {
    position: relative;
    z-index: 2;
}

.selected-titles {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #ffffff66;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}
.selected-titles span {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff66;
    transition: 0.4s;
    display: block;
}
.icon-alphabetical {
    font-size: 23px;
    background: #ffffff66;
    transition: 0.5s;
}
.selected-titles:hover span {
    color: white;
}
.selected-titles:hover i {
    background: white;
}
.selected-options {
    padding: 20px;
    background: #0a0a0a;
    position: absolute;
    left: 0;
    min-width: fit-content;
    top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}
.products-select-item.open .selected-options {
    opacity: 1;
    visibility: visible;
}
.selected-option span {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: start;
    color: #ffffff66;
    padding: 10px;
    display: block;
    white-space: nowrap;
    transition: all 0.4s;
}
.selected-option span:hover {
    background: #000;
    cursor: pointer;
    color: #2bf866;
}

.arena-items-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 0 30px;
    max-height: 720px;
    overflow: auto;
}

.arena-items-list::-webkit-scrollbar {
    width: 5px;
    height: 6px;
}

.arena-items-list::-webkit-scrollbar-track {
    background: transparent;
}

.arena-items-list::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 10px;
}

.arena-block-title {
    margin-bottom: 30px;
}

.create-arena-block {
    max-width: 325px;
    width: 100%;
    min-height: 320px;
    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #0a0a0a;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.4s;
    box-sizing: border-box;
}
.create-arena-block:hover {
    border: 1px solid #2bf866;
}
.create-arena-block p {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #ffffff;
}
.icon-plus {
    font-size: 35px;
    background: white;
}
.arena-item {
    max-width: 325px;
    width: 100%;
    min-height: 320px;
    padding: 30px 20px;
    background: #0a0a0a;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.arena-item-titles {
    padding: 0 0 20px;
    border-bottom: 0.5px solid #ffffff1a;
}
.arena-item-titles h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #ffffff;
}
.game-item-titles h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #ffffff;
}
.arena-item-tags {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.arena-item-tags p {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #ffffff66;
}
.arena-item-tags span {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #ffffff;
}
.arena-item-tools {
    display: flex;
    margin-top: 20px;
    gap: 8px;
}
.arena-item-tools button {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
}
.arena-item-tools button:hover {
    opacity: 0.6;
}

.game-item-tools {
    margin-top: 20px;
}
.game-item-tools button {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #2bf866;
    background: #2bf8661a;
    border: 2px solid #2bf866;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    transition: 0.4s;
}
.game-item-tools button:hover {
    opacity: 0.6;
}

.view-btn {
    background: #2bf8661a;
    border: 2px solid #2bf866;
    color: #2bf866;
}
.delete-btn {
    background: #ff46461a;
    border: 2px solid #ff4646;
    color: #ff4646;
}

.a-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.a-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-window {
    background: #0a0a0a;
    padding: 70px 50px;
    width: 741px;
    border-radius: 12px;
    position: relative;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: 90vh;
    overflow: auto;
}
.modal-window::-webkit-scrollbar {
    width: 6px;
}
.modal-window::-webkit-scrollbar-track {
    background: #ffffff08;

    border-radius: 4px;
}

.modal-window::-webkit-scrollbar-thumb {
    background: #ffffff1a;

    border-radius: 4px;
}

.a-modal-backdrop.active .modal-window {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: #ffffff66;
    font-size: 16px;
    cursor: pointer;
}

.create-modal-titles p {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #ffffff66;
    margin-top: 27px;
}
.create-modal-titles h2 {
    text-align: center;
}

.create-modal-cnt {
    margin-top: 50px;
}
.modal-label {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.modal-label textarea{
    width: 100%;
    border-radius: 8px;
    padding: 30px;
    font-weight: 500;
    background: #ffffff08;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff66;
    border: 1px solid transparent;
    transition: all 0.3s;
    outline: none;
}
.modal-label input[type="file"] {
    display: none;
}

.modal-label span {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff;
}
.file-label-block span {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff;
    margin-bottom: 20px;
    display: block;
}

.modal-label input {
    width: 100%;

    border-radius: 8px;
    padding: 30px;
    font-weight: 500;
    background: #ffffff08;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff66;
    border: 1px solid transparent;
    transition: all 0.3s;
    outline: none;
}
.modal-label input:focus {
    border: 1px solid #2bf866;
}

.textarea-label textarea {
    width: 100%;
    height: 279px;

    border-radius: 8px;
    padding: 30px;
    font-weight: 500;
    background: #ffffff08;

    font-style: Medium;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff66;
    border: 1px solid transparent;
    transition: all 0.3s;
    outline: none;
    resize: none;
}

.textarea-label textarea:focus {
    border: 1px solid #2bf866;
}

textarea::-webkit-scrollbar {
    width: 6px;
}

textarea::-webkit-scrollbar-track {
    background: #ffffff08;

    border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb {
    background: #ffffff1a;

    border-radius: 4px;
}

.file-label {
    width: 100%;

    border-radius: 8px;
    padding: 30px;
    font-weight: 500;
    background: #872bf81a;
    cursor: pointer;

    color: #872bf8;
    font-style: Medium;
    font-size: 24px;
    line-height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s;
    outline: none;
}

.modal-submit {
    background: #2bf86633;

    border: 2px solid #2bf866;
    color: #2bf866;
    transition: 0.5s;

    border-radius: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    margin-top: 30px;
    cursor: pointer;
    width: 100%;
    padding: 35px 20px;
}
.modal-submit:hover {
    opacity: 0.7;
}
.modla-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.days-selector-tools {
    width: 100%;
    border-radius: 8px;

    gap: 10px;

    transition: all 0.3s;
    display: flex;
    align-items: center;
}
.days-selector p {
    font-weight: 500;
    text-align: start;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff;
    margin-bottom: 30px;
    display: block;
}

.btn-minus,
.btn-plus {
    width: 100px;
    height: 100px;
    background: #ffffff08;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    outline: none;
    border: none;
    min-width: 100px;
    cursor: pointer;
}
.btn-minus,
.btn-plus span {
    color: #ffffff66;
    display: flex;
}

.days-display {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    width: 100%;
    height: 100px;
    background: #ffffff08;
}
.days-count {
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
    color: #ffffff;
}

.days-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff66;
    margin-top: 14px;
}

.statistics-search-block label {
    position: relative;
    z-index: 2;
    width: 100%;
}
.statistics-search-block label input {
    padding: 20px;
    outline: none;
    background: #0a0a0a;
    border: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    border: 1px solid transparent;
    color: #ffffff66;
    transition: all 0.3s;
    border-radius: 7px;
    width: 100%;
    border: 1px solid transparent;
    transition: all 0.3s;
}
.statistics-search-block label input:focus {
    border: 1px solid #2bf866;
}

.products-information {
    display: flex;
    gap: 20px;
    margin-top: 45px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.products-description {
    max-width: 400px;
    width: 100%;
    background: #0a0a0a;
    border-radius: 10px;
    padding: 20px 20px 0 20px;
}

.products-info-tolls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-left: 12px;
    flex-wrap: wrap;
}

.icon-arrowheads {
    background: white;
    font-size: 15px;
}

.products-info-count {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #ffffffb2;
}
.products-info-tolls {
    margin-top: 15px;
    margin-bottom: 15px;
}

.statistics-products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 360px;
    overflow: auto;
    padding: 0 10px 100px 0;
}
.statistics-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    bottom: -5px;
}

.statistics-products-list::-webkit-scrollbar {
    width: 5px;
    height: 6px;
}

.statistics-products-list::-webkit-scrollbar-track {
    background: transparent;
}

.statistics-products-list::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 10px;
}

.products-list-item {
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 15px 20px;
    cursor: pointer;
    transition: 0.4s;
}
.products-list-item:hover {
    border: 1px solid #ffffff;
}

/* Active category/game card */
.arena-item.active {
    border: 2px solid #2bf866;
    background: #2bf8660d;
}

/* Settings button for categories */
.settings-btn {
    min-width: 42px !important;
    width: 42px !important;
    padding: 10px !important;
    font-size: 16px !important;
}

.arena-item-tools {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
}

/* Category image fixed height */
.arena-item-image {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 15px;
    flex-shrink: 0;
}

/* Game item titles flex grow */
.game-item-titles {
    flex: 1;
}
.product-item-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff;
}
.product-item-number {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #ffffff66;
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    text-align: end;
}
.products-item-info {
    display: flex;
    margin-top: 7px;
    gap: 5px;
}
.products-item-info p {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #ffffff4d;
}
.products-item-info span {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #ffffff66;
}

.product-statistics {
    max-width: 940px;
    width: 100%;
    background: #0a0a0a;
    padding: 40px;
}

.product-statistics-titles {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-statistics-titles h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff;
}
.product-statistics-titles p {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff66;
}
.product-statistics-descr {
    display: flex;
    gap: 22px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.statistics-chart {
    margin-top: 24px;
}
.statistics-chart img {
    max-width: 100%;
    max-height: 100%;
}
.product-statistics-chart {
    max-width: 459px;
    width: 100%;
    padding: 20px 15px;
}
.statistics-chart-tabs {
    display: flex;
    gap: 20px;
}

.statistics-chart-tabs p {
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    color: #ffffff66;
    cursor: pointer;
    transition: 0.4s;
}
.statistics-chart-tabs p:hover {
    color: white;
}
.statistics-chart-tabs p.active {
    color: #ffffff;
}

.product-statistics-data {
    max-width: 379px;
    width: 100%;
    padding: 20px 15px;
}
.statistics-data-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.statistics-data-header h3 {
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    color: #ffffff;
}
.statistics-data-tabs {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.statistics-data-tabs p {
    padding: 6px 15px;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    color: #ffffff66;
    transition: 0.4s;
}
.statistics-data-tabs p:hover {
    color: white;
}
.statistics-data-tabs p.active {
    color: #ffffff;
}
.statistics-data-items {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.statistics-data-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ffffff1a;
}
.statistics-data-item h3 {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.08px;
    text-align: center;
    color: #ffffff66;
}
.statistics-data-descr {
    display: flex;
    align-items: center;
    gap: 20px;
}
.statistics-data-descr p {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.08px;
    color: #ffffff;
}
.statistics-data-info {
    display: flex;
    align-items: center;
    gap: 5px;
}
.statistics-data-info span {
    font-weight: 500;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: -0.08px;
    text-align: center;
    color: #ffffff66;
}
.statistics-data-time {
    display: flex;
    align-items: center;
}

.icon-arrowUp {
    background: #2bf866;
    font-size: 12px;
    margin-top: 4px;
}
.statistics-data-time b {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.08px;
    text-align: center;
    color: #2bf866;
}

.useful-links {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}
.useful-link {
    padding: 28px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s;
}
.useful-link:hover {
    opacity: 0.8;
}

.useful-link p {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.08px;
    text-align: center;
    white-space: nowrap;
}
.icon-arrow2 {
    font-size: 10px;
    background: #0077ff;
}

.useful-blue-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0077ff1a;
}
.useful-blue-link p {
    color: #0077ff;
}

.useful-gold-link {
    background: #f8cf2b1a;
}
.useful-gold-link p {
    color: #f8cf2b;
}
.useful-blueviolet-link {
    background: #872bf81a;
}
.useful-blueviolet-link p {
    color: #872bf8;
}
.useful-border-link {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.useful-border-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

@media (max-width: 1250px) {
    .products-information {
        flex-direction: column;
    }
    .products-description {
        max-width: 100%;
    }
    .product-statistics {
        max-width: 100%;
    }
    .statistics-blur {
        display: none;
    }
    .statistics-products-list {
        padding: 0 10px 10px 0;
    }
    .useful-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 740px) {
    .header-body {
        padding: 10px 20px;
        border-radius: 40px;
    }
    .header-menu-list {
        column-gap: 20px;
        row-gap: 10px;
    }
    .header-menu-list li a {
        font-size: 10px;
    }
    .icon-user {
        font-size: 14px;
    }
    .admin-logo img {
        max-width: 20px;
    }
    .admin-header {
        padding: 20px 0 0;
    }
    .back-link span {
        font-weight: 400;
        font-size: 12px;
    }
    .back-link i {
        font-size: 12px;
    }
    .a-block__title {
        font-size: 20px;
    }

    .generator-titiles p {
        margin-top: 10px;
    }
    .a-block__text {
        font-size: 10px;
    }
    .authorization-titles p {
        font-size: 10px;
        margin-top: 10px;
    }
    .authorization-titles p a {
        font-size: 10px;
    }
    .generator-kod-inputs {
        margin-top: 0;
        justify-content: center;
    }
    .code-input {
        width: 40px;
        height: 50px;
        font-size: 20px;
        border-radius: 5px;
    }
    .a-btn__green {
        padding: 15px;
        border-radius: 7px;
        font-size: 12px;
    }
    .a-btn__black {
        padding: 15px;
        border-radius: 7px;
        font-size: 12px;
    }
    .admin-cnt-block {
        padding: 20px;
        border-radius: 7px;
        gap: 20px;
    }
    .admin-cnt {
        padding: 30px 15px;
    }
    .icon-user2 {
        font-size: 14px;
    }
    .icon-key {
        font-size: 14px;
    }
    .authorization-inputs label input {
        padding: 14px 14px 14px 44px;
        font-weight: 400;
        font-size: 12px;
    }
    .authorization-inputs label i {
        left: 20px;
    }
    .authorization-inputs label {
        height: 57px;
    }
    .wrong-clue span {
        font-size: 12px;
    }
    .icon-priority {
        font-size: 14px;
    }
    .arena-item {
        max-width: 100%;
        padding: 20px 10px;
        min-height: 280px;
    }
    .create-arena-block {
        max-width: 100%;
        padding: 20px 10px;
        gap: 10px;
        min-height: 280px;
    }
    .page-title {
        font-weight: 600;
        font-size: 20px;
    }
    .page-sub-title {
        font-size: 16px;
        margin-top: 10px;
    }
    .my-products-titiles {
        gap: 10px;
    }
    .my-products-cnt {
        gap: 20px;
        margin-top: 30px;
    }
    .create-arena-block p {
        font-weight: 400;
        font-size: 14px;
    }
    .game-item-titles h3 {
        font-size: 16px;
    }
    .arena-item-titles h3 {
        font-size: 16px;
    }
    .arena-item-tags p {
        font-size: 12px;
    }
    .arena-item-tags {
        margin-top: 10px;
        gap: 10px;
    }
    .arena-item-tags span {
        font-weight: 400;
        font-size: 12px;
    }
    .game-item-tools button {
        font-weight: 400;
        font-size: 12px;
    }
    .arena-item-tools button {
        font-weight: 400;
        font-size: 12px;
    }

    .search-block label input {
        padding: 14px;
        font-weight: 400;
        font-size: 12px;
    }

    .icon-search {
        font-size: 14px;
        top: 6px;
    }
    .icon-alphabetical {
        font-size: 15px;
    }
    .selected-titles span {
        font-weight: 400;
        font-size: 12px;
    }
    .products-select-wrapper {
        gap: 20px;
    }
    .selected-options {
        padding: 10px;
        top: 20px;
    }
    .selected-option span {
        font-size: 12px;
        padding: 10px;
    }
    .icon-plus {
        font-size: 15px;
    }
    .my-products-section {
        margin-top: 40px;
    }
    .create-modal-titles p {
        font-size: 16px;
        margin-top: 10px;
    }
    .modal-window {
        padding: 20px;
        max-width: 741px;
        border-radius: 8px;
    }
    .create-modal-cnt {
        margin-top: 30px;
    }
    .modal-label {
        gap: 20px;
    }
    .modal-label span {
        font-weight: 400;
        font-size: 16px;
    }
    .modal-label input {
        padding: 20px;
        font-weight: 400;
        font-size: 16px;
    }
    .file-label-block span {
        font-size: 16px;
    }
    .file-label {
        padding: 20px;
        font-weight: 400;
        font-size: 16px;
    }
    .textarea-label textarea {
        padding: 20px;
        font-weight: 400;
        font-size: 16px;
        height: 200px;
    }
    .modal-submit {
        border: 1px solid #2bf866;
        border-radius: 8px;
        font-weight: 500;
        font-size: 16px;
        margin-top: 20px;
        padding: 20px;
    }
    .modal-close {
        right: 20px;
        font-size: 13px;
    }
    .days-selector p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .arena-block-title {
        text-align: center;
    }
    .btn-minus,
    .btn-plus {
        width: 50px;
        height: 50px;
        font-weight: 400;
        font-size: 16px;
        min-width: 50px;
    }
    .days-display {
        gap: 10px;
        height: 50px;
    }
    .days-count {
        font-weight: 400;
        font-size: 20px;
    }
    .days-label {
        font-size: 12px;
        margin-top: 2px;
    }
    .products-description {
        padding: 10px 10px 0 10px;
    }
    .products-info-count {
        font-size: 12px;
    }
    .products-list-item {
        padding: 15px;
    }

    .product-item-name {
        font-size: 12px;
    }
    .products-item-info p {
        font-size: 10px;
    }
    .products-item-info span {
        font-size: 10px;
    }
    .product-item-number {
        font-size: 10px;
        margin-top: 6px;
        margin-bottom: 6px;
    }
    .product-statistics {
        padding: 20px;
    }
    .product-statistics-titles h2 {
        font-size: 18px;
    }
    .product-statistics-titles p {
        font-size: 18px;
    }
    .product-statistics-chart {
        padding: 0;
    }
    .product-statistics-data {
        padding: 0;
    }
    .useful-link {
        padding: 15px;
    }
    .useful-links {
        gap: 10px;
    }
    .useful-link p {
        font-weight: 500;
        font-size: 12px;
    }
    .useful-border-img {
        display: none;
    }
}

/* Keys page styles */
.keys-management {
    background: #0a0a0a;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.keys-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #333;
}

.keys-stats {
    display: flex;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: #888;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.keys-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.keys-filters select {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
}

.keys-actions {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.btn-primary, .btn-secondary {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #10b981;
    color: #fff;
}

.btn-primary:hover {
    background: #059669;
}

.btn-secondary {
    background: #374151;
    color: #fff;
}

.btn-secondary:hover {
    background: #4b5563;
}

.keys-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.key-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.key-item:hover {
    border-color: #10b981;
}

.key-item.free {
    border-left: 4px solid #10b981;
}

.key-item.sold {
    border-left: 4px solid #f59e0b;
}

.key-info {
    flex: 1;
}

.key-value {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
    word-break: break-all;
}

.key-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-free {
    background: #10b981;
    color: #fff;
}

.status-sold {
    background: #f59e0b;
    color: #fff;
}

.key-details {
    color: #888;
    font-size: 12px;
    margin-right: 16px;
}

.key-sold-info {
    margin-top: 4px;
}

.key-actions {
    display: flex;
    gap: 8px;
}

.btn-delete {
    background: #dc2626;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-delete:hover {
    background: #b91c1c;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.page-btn {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    background: #333;
}

.page-btn.active {
    background: #10b981;
    border-color: #10b981;
}

.no-keys {
    text-align: center;
    color: #888;
    padding: 48px;
    font-size: 16px;
}
#generatedApiKey{
    color:#2bf866;
}

/* Day Options Chips */
.day-options-section {
    margin-top: 10px;
}

.day-options-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.day-chip {
    padding: 12px 20px;
    background: #ffffff08;
    border: 2px solid #ffffff1a;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff66;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Atyp Display";
}

.day-chip:hover {
    border-color: #2bf866;
    color: #2bf866;
}

.day-chip.selected {
    background: #2bf8661a;
    border-color: #2bf866;
    color: #2bf866;
}

/* Keys Tabs for product creation */
.keys-tabs-section {
    margin-top: 20px;
}

.keys-tabs {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffffff1a;
    padding-bottom: 10px;
}

.keys-tab {
    padding: 10px 20px;
    background: #ffffff08;
    border: 1px solid transparent;
    border-radius: 8px 8px 0 0;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff66;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Atyp Display";
}

.keys-tab:hover {
    color: #ffffff;
    background: #ffffff12;
}

.keys-tab.active {
    background: #2bf8661a;
    border-color: #2bf866;
    color: #2bf866;
}

.keys-tab-panel {
    display: none;
}

.keys-tab-panel.active {
    display: block;
}

.keys-tab-panel textarea {
    width: 100%;
    min-height: 150px;
    border-radius: 8px;
    padding: 20px;
    font-weight: 500;
    background: #ffffff08;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
    border: 1px solid transparent;
    transition: all 0.3s;
    outline: none;
    resize: vertical;
    font-family: monospace;
}

.keys-tab-panel textarea:focus {
    border: 1px solid #2bf866;
}

.keys-tab-panel .file-upload-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
}

.keys-tab-panel .file-label {
    flex: 1;
    padding: 15px;
    font-size: 14px;
}

.keys-tab-info {
    font-size: 12px;
    color: #ffffff66;
    margin-top: 10px;
}

/* Day options list in product card */
.day-options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.day-option-badge {
    padding: 6px 12px;
    background: #ffffff08;
    border: 1px solid #ffffff1a;
    border-radius: 6px;
    font-size: 12px;
    color: #ffffff99;
    white-space: nowrap;
}

.day-option-badge:hover {
    border-color: #2bf866;
    color: #2bf866;
}

/* Image preview in modal */
.image-preview {
    display: none;
    max-width: 100%;
    max-height: 150px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #ffffff1a;
}

.image-preview.visible {
    display: block;
}

.file-label-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.file-label-block > span {
    font-size: 13px;
    color: #ffffff99;
}

/* Day options tabs on keys page */
.day-options-tabs {
    margin-bottom: 20px;
}

.day-tabs-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.day-tabs-label {
    font-size: 14px;
    color: #ffffff99;
}

.day-tabs-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.day-tab-btn {
    padding: 10px 18px;
    background: #ffffff08;
    border: 1px solid #ffffff1a;
    border-radius: 8px;
    color: #ffffff99;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.day-tab-btn:hover {
    border-color: #ffffff44;
    color: #fff;
}

.day-tab-btn.active {
    background: linear-gradient(135deg, #2bf866 0%, #1ed760 100%);
    border-color: #2bf866;
    color: #000;
    font-weight: 500;
}

.day-tab-count {
    opacity: 0.7;
    font-size: 12px;
}

.day-tab-btn.active .day-tab-count {
    opacity: 1;
}

.no-day-options {
    padding: 15px;
    background: #ffffff08;
    border-radius: 8px;
    color: #ffffff66;
    font-size: 14px;
}

/* Key day badge */
.key-day-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #ffffff12;
    border-radius: 4px;
    font-size: 11px;
    color: #ffffff88;
    margin-right: 8px;
}

/* Modal day tabs */
.modal-day-tabs {
    margin: 15px 0;
    padding: 15px;
    background: #ffffff08;
    border-radius: 8px;
}

.modal-day-tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-day-tabs-label {
    font-size: 13px;
    color: #ffffff88;
}

.modal-day-tabs-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.modal-day-tab-btn {
    padding: 8px 16px;
    background: #ffffff08;
    border: 1px solid #ffffff1a;
    border-radius: 6px;
    color: #ffffff99;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-day-tab-btn:hover {
    border-color: #ffffff44;
    color: #fff;
}

.modal-day-tab-btn.active {
    background: linear-gradient(135deg, #2bf866 0%, #1ed760 100%);
    border-color: #2bf866;
    color: #000;
    font-weight: 500;
}

.modal-day-tabs-hint {
    font-size: 13px;
    color: #ffffff66;
    margin: 0;
}

.selected-day-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #ffffff08;
    border-radius: 8px;
    margin-bottom: 10px;
}

.selected-day-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.selected-day-info span {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
}

.selected-day-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-day-price input {
    width: 120px;
    padding: 10px;
    background: #ffffff08;
    border: 1px solid #ffffff1a;
    border-radius: 6px;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    font-family: "Atyp Display";
}

.selected-day-price input:focus {
    border-color: #2bf866;
}

.remove-day-btn {
    padding: 8px 12px;
    background: #ff46461a;
    border: 1px solid #ff4646;
    border-radius: 6px;
    color: #ff4646;
    cursor: pointer;
    transition: opacity 0.3s;
    font-family: "Atyp Display";
}

.remove-day-btn:hover {
    opacity: 0.7;
}

/* Region Filter Tabs */
.region-filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 10px;
    flex-wrap: wrap;
}

.region-tab {
    padding: 10px 20px;
    background: #ffffff08;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff66;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Atyp Display";
}

.region-tab:hover {
    border-color: #ffffff33;
    color: #ffffff;
}

.region-tab.active {
    background: #2bf8661a;
    border-color: #2bf866;
    color: #2bf866;
}

/* Product/Category Image Preview */
.image-preview {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    margin-top: 10px;
    display: none;
}

.image-preview.visible {
    display: block;
}

.arena-item-region {
    display: inline-block;
    padding: 4px 10px;
    background: #ffffff08;
    border-radius: 4px;
    font-size: 12px;
    color: #ffffff66;
    margin-bottom: 10px;
}

.arena-item-region.ru {
    background: #0077ff1a;
    color: #0077ff;
}

.arena-item-region.global {
    background: #2bf8661a;
    color: #2bf866;
}
#categoryRegion option{
    color:white;
    background-color: black;
}
/* Payments Statistics Styles */
.payments-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payments-filters,
.stats-summary,
.stats-payment-methods,
.stats-currencies,
.stats-products,
.transactions-table {
    background: #0a0a0a;
    padding: 30px 20px;
    border-radius: 10px;
}

.payments-filters-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: end;
}

.payments-filter-item {
    flex: 1;
    min-width: 200px;
}

.payments-filter-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff;
}

.payments-select {
    width: 100%;
    padding: 30px 20px;
    outline: none;
    background: #ffffff08;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #ffffff66;
    transition: all 0.3s;
    font-family: "Atyp Display";
}

.payments-select:focus {
    border: 1px solid #2bf866;
    color: #ffffff;
}

.payments-filter-buttons {
    display: flex;
    gap: 10px;
}

.payments-btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: 0.4s;
    border: 2px solid;
    white-space: nowrap;
}

.payments-btn-primary {
    color: #2bf866;
    background: #2bf8661a;
    border-color: #2bf866;
}

.payments-btn-primary:hover {
    opacity: 0.6;
}

.payments-btn-secondary {
    color: #2bf866;
    background: #2bf8661a;
    border-color: #2bf866;
}

.payments-btn-secondary:hover {
    opacity: 0.6;
}

.stats-section-title {
    margin: 0 0 20px 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.stats-card {
    background: #ffffff08;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.stats-card-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff66;
    margin-bottom: 10px;
}

.stats-card-value {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff;
}

.payments-table {
    width: 100%;
    border-collapse: collapse;
}

.payments-table thead tr {
    background: #ffffff08;
}

.payments-table th {
    padding: 12px;
    text-align: left;
    border-bottom: 0.5px solid #ffffff1a;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff66;
}

.payments-table th.text-right {
    text-align: right;
}

.payments-table tbody tr {
    border-bottom: 0.5px solid #ffffff1a;
}

.payments-table tbody tr:hover {
    background: #ffffff08;
}

.payments-table td {
    padding: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff;
}

.payments-table td.text-right {
    text-align: right;
}

.transactions-empty {
    padding: 40px;
    text-align: center;
    color: #ffffff66;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.transactions-table-wrapper {
    overflow-x: auto;
}

/* Stats lists */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stats-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #ffffff08;
    border-radius: 8px;
    border: 1px solid transparent;
}

.stats-list-item-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff66;
}

.stats-list-item-value {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff;
}