/* Forex Trading Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTFX Logo Styles */
.htfx-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-right: 8px;
    border-radius: 4px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #2c3e50;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.forex-container {
    min-height: 100vh;
    padding-bottom: 100px;
}

/* Header Styles */
.forex-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icon {
    color: #00d4aa;
    font-size: 24px;
}

.header-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-id-display {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    border: 1px solid rgba(0, 212, 170, 0.3);
    letter-spacing: 0.5px;
}

/* Markets Section */
.markets-section {
    flex: 1;
    padding: 0 20px;
    margin-bottom: 20px;
}


.markets-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.market-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 2px;
}

.market-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.market-item.selected {
    background: rgba(0, 123, 255, 0.2);
    border: 1px solid #007bff;
}

/* Market Category Badge */
.market-category-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.market-category-badge.forex {
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    border-color: #00d4aa;
    color: #ffffff;
}

.market-category-badge.stocks {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #ffffff;
}

.market-category-badge.htfx {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-color: #ff6b6b;
    color: #ffffff;
}

/* Market Info Container */
.market-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.market-pair {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.market-category {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Market Price Styles */
.market-price {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.price-value {
    font-size: 16px;
    font-weight: 600;
}

.price-change {
    font-size: 11px;
    font-weight: 500;
}

.price-change.positive {
    color: #00d4aa;
}

.price-change.negative {
    color: #ef5350;
}

/* Market Status Styles */
.market-price.live {
    color: #ffffff;
}

.market-price.live .price-value {
    color: #00d4aa;
}

.market-price.loading {
    color: #888;
    font-style: italic;
}

.market-price.error {
    color: #ef5350;
}

.market-price.closed {
    color: #ffffff;
    opacity: 0.7;
}

/* Category-specific colors */
.market-item[data-category="Forex"] .market-category {
    color: #00d4aa;
}

.market-item[data-category="Forex HTFX"] .market-category {
    color: #00d4aa;
    font-weight: 600;
}

.market-item[data-category="Commodities"] .market-category {
    color: #ffa726;
}

.market-item[data-category="Commodities HTFX"] .market-category {
    color: #ffa726;
    font-weight: 600;
}

.market-item[data-category="Indices"] .market-category {
    color: #42a5f5;
}

.market-item[data-category="Stocks"] .market-category {
    color: #ab47bc;
}

.market-item[data-category="Stocks HTFX"] .market-category {
    color: #ab47bc;
    font-weight: 600;
}

.market-item[data-category="Crypto"] .market-category {
    color: #66bb6a;
}

/* Market Detail View */
.market-detail-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 100px;
    -webkit-overflow-scrolling: touch;
}

.market-detail-view.show {
    transform: translateX(0);
}

.detail-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.back-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.market-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.market-title i {
    color: #007bff;
}

/* Market Summary */
.market-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    margin: 10px 0;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #00d4aa;
}

.price-change {
    font-size: 16px;
    font-weight: 600;
    color: #00d4aa;
}

.stats-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.stat-label {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.7;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Timeframe Selector */
.timeframe-selector {
    display: flex;
    gap: 5px;
    padding: 10px 20px;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.05);
    margin: 10px 0;
}

.timeframe-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.timeframe-btn.active {
    background: #007bff;
    color: #ffffff;
}

.timeframe-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
}

/* OHLC Data */
.ohlc-data {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    margin: 10px 20px;
    border-radius: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.ohlc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 15px;
}

.ohlc-row:last-child {
    margin-bottom: 0;
}

.ohlc-label {
    color: #00d4aa;
    font-weight: 700;
    font-size: 16px;
    flex: 1;
    text-align: center;
    letter-spacing: 0.5px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ohlc-value {
    color: #00d4aa;
    font-weight: 600;
    font-size: 13px;
    flex: 1;
    text-align: center;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 8px 12px;
}

/* Chart Container */
.chart-container {
    background: #000000;
    margin: 10px 20px;
    border-radius: 12px;
    padding: 15px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.price-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 230px;
    width: 80px;
    flex-shrink: 0;
}

.chart-section {
    flex: 1;
    min-width: 0;
}

.price-level {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.6;
    text-align: left;
}

.current-price-level {
    color: #00d4aa;
    font-weight: 600;
    background: rgba(0, 212, 170, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.chart-area {
    height: 180px;
    background: #000000;
    border-radius: 8px;
    margin: 5px 0;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    width: 100%;
    flex: 1;
}

.volume-area {
    height: 50px;
    background: #000000;
    border-radius: 8px;
    margin: 5px 0;
    position: relative;
    overflow: hidden;
    min-height: 50px;
    width: 100%;
}

.time-axis {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.time-marker {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.6;
}

/* Chart Labels */
.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 12px;
    color: #ffffff;
    opacity: 0.6;
}

/* User Balance Section */
.user-balance-section {
    margin: 20px 20px 15px 20px;
}

.balance-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
}

.balance-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 8px;
}

.balance-amount {
    color: #00d4aa;
    font-size: 18px;
    font-weight: 700;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    padding: 0 20px 20px 20px;
    margin-top: 0;
}

.action-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn-detail {
    background: #ff6b6b;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.buy-btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.sell-btn-detail {
    background: #00d4aa;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.sell-btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

/* Layout Updates */
.forex-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.markets-section {
    flex: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.forex-container > * {
    animation: fadeInUp 0.6s ease-out;
}

.trading-section {
    animation-delay: 0.1s;
}

.positions-section {
    animation-delay: 0.2s;
}

/* Market Status Badge */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid;
    display: inline-block;
    min-width: 100px;
}

.status-badge.market-open {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
    border-color: #00d4aa;
}

.status-badge.market-closed {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border-color: #ff6b6b;
}

.market-open {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
    border: 1px solid #00d4aa;
}

.market-closed {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

/* Responsive Design */
@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
    }
    
    .trading-section,
    .positions-section {
        margin: 0 15px 15px;
        padding: 15px;
    }
    
    .currency-info {
        padding: 15px;
    }
    
    .positions-header {
        grid-template-columns: repeat(3, 1fr);
        font-size: 10px;
    }
    
    .header-cell:nth-child(4),
    .header-cell:nth-child(5),
    .header-cell:nth-child(6) {
        display: none;
    }
}

/* Trading Form Styles */
.trading-form {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #00d4aa;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00d4aa;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #2c3e50;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    -webkit-overflow-scrolling: touch;
    margin: 20px auto;
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    color: #00d4aa;
    font-size: 20px;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff4757;
}

.modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.trade-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row .label {
    font-weight: 600;
    color: #00d4aa;
    font-size: 14px;
}

.summary-row .value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Confirmation Modal Styles */
.confirm-message {
    text-align: center;
    padding: 20px 0;
}

.confirm-icon {
    font-size: 48px;
    color: #00d4aa;
    margin-bottom: 15px;
    display: block;
}

.confirm-message p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-primary {
    background: #00d4aa;
    color: #2c3e50;
}

.btn-primary:hover {
    background: #00b894;
    transform: translateY(-2px);
}

.btn-primary:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Trading History Styles */
.trading-history-section {
    margin: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.history-header h3 {
    color: #00d4aa;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.refresh-history-btn {
    background: rgba(0, 212, 170, 0.2);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: #00d4aa;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-history-btn:hover {
    background: rgba(0, 212, 170, 0.3);
    transform: rotate(180deg);
}

.history-content {
    padding: 0;
}

.history-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.history-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.history-tab.active {
    color: #00d4aa;
    border-bottom-color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
}

.history-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

.history-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.history-table th {
    background: rgba(255, 255, 255, 0.05);
    color: #00d4aa;
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.history-table td {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 13px;
    white-space: nowrap;
}

.history-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.no-data {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 30px;
}

.trade-type {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.trade-type.buy {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.trade-type.sell {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
}

.status-open {
    color: #00d4aa;
    font-weight: 600;
}

.status-closed {
    color: #888;
    font-weight: 600;
}

.profit {
    color: #00d4aa;
    font-weight: 600;
}

.loss {
    color: #ff6b6b;
    font-weight: 600;
}

.close-trade-btn {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-trade-btn:hover {
    background: rgba(255, 107, 107, 0.3);
    transform: translateY(-1px);
}

.close-trade-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #888;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .trading-form {
        margin: 15px;
        padding: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .modal-overlay {
        padding: 10px;
        align-items: flex-start;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px auto;
        max-height: calc(100vh - 20px);
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-header {
        padding: 15px;
        position: sticky;
        top: 0;
        background: #2c3e50;
        z-index: 10;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 15px;
        max-height: 50vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-footer {
        padding: 15px;
        flex-direction: column;
        position: sticky;
        bottom: 0;
        background: #2c3e50;
        z-index: 10;
    }
    
    .btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    /* Mobile History Styles */
    .trading-history-section {
        margin: 15px;
    }
    
    .history-header {
        padding: 15px;
    }
    
    .history-header h3 {
        font-size: 16px;
    }
    
    .history-tab {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .history-table th,
    .history-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .history-table th:nth-child(5),
    .history-table td:nth-child(5),
    .history-table th:nth-child(6),
    .history-table td:nth-child(6) {
        display: none;
    }
}
