  .miner-bar-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .profit-expense-bar {
            width: 100%;
            display: flex;
            align-items: center;
            border-radius: 5px;
            overflow: hidden;
            height: 10px;
            margin-bottom: 5px;
        }
        .profit-bar {
            background-color: #03C586;
            height: 70%;
            border-radius: 5px;
            transition: width 0.3s ease-in-out;
        }
        .expense-bar {
            background-color: #FB603C;
            height: 70%;
            border-radius: 5px;
            transition: width 0.3s ease-in-out;
        }
        .gap {
            width: 10px;
            background-color: #1C1F26;
            height: 100%;
        }
        .bar-info {
            display: flex;
            width: 100%;
            justify-content: space-between;
            font-weight: bold;
            margin-top: 5px;
        }
        .profit-percentage, .expense-percentage {
            text-align: center;
            font-size: 0.9rem;
        }