.monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

    .monitor-header h2 {
        font-size: 28px;
        font-weight: 800;
        color: #0b1f44;
        margin: 0;
    }

        .monitor-header h2 i {
            color: #2d8cff;
            margin-right: 8px;
        }

    .monitor-header p {
        margin: 4px 0 0;
        color: #667085;
        font-size: 14px;
    }

.monitor-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
}

.btn-update {
    border: 1px solid #d9e2ef;
    background: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    color: #1f3b64;
    font-weight: 600;
}

.last-update {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667085;
    font-size: 12px;
}

    .last-update i {
        width: 36px;
        height: 36px;
        background: #eef4ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }




.monitor-section-status {
/*    background-color: #eefafa;*/
/*    padding-right: 90px;*/
}
.monitor-section-comunicacao {
/*    background-color: #f7e9e9;*/
}
.monitor-section-geracao {
/*    background-color: #faf9e9;*/
/*    padding-top: 15px;*/
}

.monitor-section {
    /*    padding: 15px;*/
    padding-top: 15px;
}

    .monitor-section h4 {
        font-size: 20px;
        font-weight: 800;
        color: #172b4d;
        margin-bottom: 14px;
    }

.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 84px;
    border-radius: 10px;
    padding: 14px 16px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(15, 23, 42, .08);
    border-left: 4px solid transparent;
    transition: .2s ease;
    cursor: pointer;
}

    .status-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(15, 23, 42, .14);
    }

.card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.card-number {
    font-size: 25px;
    font-weight: 850;
    color: #172033;
    line-height: 1;
}

.card-label {
    font-size: 12px;
    color: #4f5f78;
    font-weight: 700;
    margin-top: 5px;
}

.card-dark {
    background: linear-gradient(135deg, #273142, #111827);
}

    .card-dark .card-number,
    .card-dark .card-label {
        color: #fff;
    }

    .card-dark .card-icon {
        background: rgba(255,255,255,.14);
    }

.card-red {
    border-left-color: #e63946;
    background: #fff3f4;
}

    .card-red .card-icon {
        background: #e63946;
    }

.card-orange {
    border-left-color: #ff7a1a;
    background: #fff4eb;
}

    .card-orange .card-icon {
        background: #ff7a1a;
    }

.card-yellow {
    border-left-color: #ffc107;
    background: #fff8e1;
}

    .card-yellow .card-icon {
        background: #ffc107;
    }

.card-purple {
    border-left-color: #7b2ff7;
    background: #f4efff;
}

    .card-purple .card-icon {
        background: #7b2ff7;
    }

.card-pink {
    border-left-color: #e84393;
    background: #fff0f7;
}

    .card-pink .card-icon {
        background: #e84393;
    }

.card-blue {
    border-left-color: #2d8cff;
    background: #eef6ff;
}

    .card-blue .card-icon {
        background: #2d8cff;
    }

.card-green {
    border-left-color: #20b26b;
    background: #effaf4;
}

    .card-green .card-icon {
        background: #20b26b;
    }

.card-gray {
    border-left-color: #667085;
    background: #cfcfcf;
}

    .card-gray .card-icon {
        background: #667085;
    }

.card-sit-usinas {
    background: #e8e8e8;
}
