.elementor-9608 .elementor-element.elementor-element-33e14a8{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-307899c *//* MAIN */
.dreck-dashboard {
    background: #181818;
    padding: 40px;
    border-radius: 18px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.top-bar h2 {
    font-size: 30px;
    font-weight: 700;
}

.username {
    color: #22c55e;
}

.status {
    background: #22c55e;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* GRID */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: #222222;
    padding: 30px;
    border-radius: 16px;
}

/* TEXT */
.label {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 30px;
    font-weight: 800;
}

/* STATUS COLOR */
.active {
    color: #22c55e;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-bar h2 {
        font-size: 22px;
    }

    .card h3 {
        font-size: 22px;
    }
}/* End custom CSS */