.trex-dashboard-stats {
    padding: 20px;
    background-color: transparent; /* Changed to transparent */
}

.trex-dashboard-stats .stats-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.trex-dashboard-stats .stat-item {
    flex: 1;
    background-color: rgba(11, 40, 67, 0.2); /* Made more transparent */
    border-radius: 8px;
    padding: 20px;
    backdrop-filter: blur(10px); /* Added blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
}

.trex-dashboard-stats .stat-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.trex-dashboard-stats .stat-info {
    flex-grow: 1;
}

.trex-dashboard-stats .stat-info h6 {
    font-size: 0.875rem;
    color: #8f9fae;
    margin-bottom: 8px;
}

.trex-dashboard-stats .number-font {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.trex-dashboard-stats .chart-wrapper {
    width: 120px;
    height: 60px;
}

@media (max-width: 768px) {
    .trex-dashboard-stats .stats-container {
        flex-direction: column;
    }
}