.traderx-plus-container {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    font-family: 'Inter', sans-serif;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
}

.traderx-column {
    width: 45%;
    background: rgba(24, 26, 34, 0.95);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.traderx-column:hover {
    transform: scale(1.05);
}

.traderx-column h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #ccc;
}

.traderx-column ul {
    list-style: none;
    padding: 0;
    max-height: 450px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #00ff99 #111; /* Color of scrollbar and its background */
}

.traderx-column::-webkit-scrollbar {
    width: 8px; /* Width of scrollbar */
}

.traderx-column::-webkit-scrollbar-thumb {
    background-color: #00ff99; /* Color of the thumb */
    border-radius: 10px; /* Round corners */
    border: 2px solid #111; /* Border color for thumb */
}

.traderx-column::-webkit-scrollbar-track {
    background: #111; /* Background of the track */
    border-radius: 10px;
}

.traderx-column li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeIn 0.5s ease-in-out forwards;
    border-left: 4px solid transparent;
}

.traderx-column li.green {
    border-left-color: #00ff99;
}

.traderx-column li.red {
    border-left-color: #ff4c4c;
}

.traderx-column li.large {
    font-weight: bold;
    background-color: rgba(0, 255, 153, 0.1);
    border-left-width: 6px;
}

.traderx-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.traderx-info {
    flex: 1;
}

.traderx-info strong {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.traderx-info small {
    font-size: 14px;
    color: #aaa;
}

.announcement-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #00ff99;
    text-align: center;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 0 0 12px 12px;
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.traderx-controls {
    text-align: center;
    margin-top: 20px;
}

.traderx-controls button {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #222;
    color: #00ff99;
    border: 1px solid #00ff99;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.traderx-controls button:hover {
    background-color: #00ff99;
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
