/* Заголовок */
.markets-table__title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Панелі */
.profile-table__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.profile-table__header__btn-section {
    display: flex;
    gap: 5px;
}

.profile-table__header__btn {
    padding: 6px 14px 3px;
    border-radius: 4px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    outline: none !important;
}

.profile-table__header__btn.active,
#btn-crypto {
    background: #c1c1c1;
    font-weight: bold;
    color: #1c1c28;
}

.profile-table__header__btn.active:focus {
    outline: none;
}

.profile-table__header__btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.soon-label {
    position: absolute;
    top: -6px;
    right: -22px;
    background: #e0e0e0;
    color: black;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 4px 0;
    border-radius: 3px;
}

/* Пошук */
.markets-table__search-section {
    display: flex;
}

.search-section__input-section {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 3px 8px;
    background: #fff;
}

.search-section__input__icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    fill: #7a7a83;
}

#markets-search {
    border: none;
    outline: none;
    font-size: 14px;
    padding-top: 4px;
}

#search-clear {
    position: absolute;
    right: 6px;
    background: none;
    border: none;
    font-size: 18px;
    color: #888;
    cursor: pointer;
}

/* Перемикач */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.tab-section-switch__text {
    margin-left: 8px;
    font-size: 14px;
    color: #2196F3;
}

/* Таблиця */
#markets-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

#markets-table thead {
    background: #f5f5f5;
}

#markets-table tr {
    border-bottom: 1px solid #ddd;
}

#markets-table thead tr {
    border-bottom: none;
}

#markets-table th, #markets-table td {
    padding: 8px;
    text-align: right;
}

#markets-table th:first-child, #markets-table td:first-child {
    text-align: left;
}

#markets-table th[data-sort] {
    cursor: pointer;
}

.price-up {
    color: green;
}

.price-down {
    color: red;
}

/* Комірка монети */
.table-name {
    display: flex;
    align-items: center;
    gap: 5px;
}

.table-name img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
}

.table-name__names__short span {
    color: #7a7a83;
}

/* Trade кнопка */
.trade-btn {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    background: #eaeaea;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    margin-left: 8px;
}

/* Canvas */
canvas.coin-graphics {
    display: block;
    margin-bottom: 4px;
}

/* markets.css */
.sort-arrow {
    background: url("../img/arrow.svg") no-repeat center center;
    background-size: contain;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    opacity: .6;
    transition: transform .25s ease, opacity .2s ease;
    display: inline-block;
    transform: rotate(180deg);
}

.sorted[aria-sort="asc"] .sort-arrow {
    transform: rotate(0deg);
}

.landing-hero {
    margin-bottom: 20px;
}

.profile-table__header__btn__icon {
    position: relative;
    top: -2px;
}

.profile-table__header__btn.active .profile-table__header__btn__icon {
    fill: #1c1c28 !important;
}

.markets-table__header {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #c1c1c1;
}

.tab-section-switch {
    display: flex;
    align-items: center;
}

label {
    margin-bottom: 0;
}

table .text-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#light .profile-table__header__btn {
    color: #1c1c28;
}

#light .profile-table__header__btn__icon {
    fill: #1c1c28 !important;
}