.stats-grid {
display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.dashboard-grid {
display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr);
    align-items: start;
    gap: 18px;
}

.activity-placeholder {
display: flex;
    height: 270px;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: linear-gradient( to top, transparent 24%, #e8edf4 25%, transparent 26% ), linear-gradient( to top, transparent 49%, #e8edf4 50%, transparent 51% ), linear-gradient( to top, transparent 74%, #e8edf4 75%, transparent 76% );
    border-radius: 9px;
}

@media (max-width: 1100px) {
.stats-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 650px) {
.stats-grid {
grid-template-columns: 1fr;
        gap: 13px;
}
}

.dashboard-notice {
display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.dashboard-notice svg {
width: 20px;
        height: 20px;
        flex: 0 0 20px;
}

.dashboard-notice-error {
color: #912018;
    background: #fff3f2;
    border: 1px solid #fecdca;
}

.dashboard-notice-error div div {
margin-top: 2px;
        font-size: 12px;
        color: #b42318;
}

.activity-empty-state {
display: flex;
    min-height: 255px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: #475467;
    background: linear-gradient( to top, transparent 24%, #edf1f6 25%, transparent 26% ), linear-gradient( to top, transparent 49%, #edf1f6 50%, transparent 51% ), linear-gradient( to top, transparent 74%, #edf1f6 75%, transparent 76% );
    border-radius: 10px;
}

.activity-empty-state strong {
margin-top: 13px;
        font-size: 14px;
        color: #344054;
}

.activity-empty-state > span {
max-width: 360px;
        margin-top: 5px;
        font-size: 12px;
        color: var(--muted);
}

.dashboard-agents-panel {
margin-top: 18px;
}

.dashboard-table-wrapper {
overflow-x: auto;
}

.dashboard-table {
width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.dashboard-table th {
padding: 11px 12px;
        font-size: 11px;
        font-weight: 600;
        color: #667085;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        background: #f8fafc;
        border-top: 1px solid #eaecf0;
        border-bottom: 1px solid #eaecf0;
}

.dashboard-table td {
padding: 14px 12px;
        font-size: 12px;
        color: #475467;
        border-bottom: 1px solid #eef1f5;
}

.dashboard-table tbody tr:last-child td {
border-bottom: 0;
}

.dashboard-table tbody tr:hover {
background: #fbfcfe;
}

.computer-cell {
display: flex;
    align-items: center;
    gap: 11px;
}

.computer-cell strong {
display: block;
        font-size: 12px;
        font-weight: 600;
        color: #344054;
}

.computer-cell small {
display: block;
        margin-top: 2px;
        font-size: 10px;
        color: #98a2b3;
}

.computer-icon {
display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    color: #175cd3;
    background: #eff8ff;
    border-radius: 9px;
}

.computer-icon svg {
width: 17px;
        height: 17px;
}

@media (max-width: 650px) {
.dashboard-agents-panel {
margin-top: 13px;
}
}

.activity-chart-container {
position: relative;
    width: 100%;
    height: 285px;
}

.dashboard-grid {
display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    align-items: start;
    gap: 18px;
}

.dashboard-agents-panel {
width: 100%;
    margin-top: 0;
}

.dashboard-main-column,
.dashboard-side-panels {
display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 18px;
}

@media (max-width: 1100px) {
.dashboard-grid {
grid-template-columns: 1fr;
}
}

.top-applications-list {
display: flex;
    flex-direction: column;
    gap: 16px;
}

.top-application-item {
min-width: 0;
}

.top-application-heading {
display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.top-application-heading strong {
flex-shrink: 0;
        font-size: 11px;
        font-weight: 600;
        color: #475467;
}

.top-application-name {
display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.top-application-name > span:last-child {
overflow: hidden;
        font-size: 12px;
        font-weight: 500;
        color: #344054;
        text-overflow: ellipsis;
        white-space: nowrap;
}

.application-progress {
height: 6px;
    overflow: hidden;
    background: #edf1f5;
    border-radius: 10px;
}

.application-progress-value {
height: 100%;
    min-width: 3px;
    background: linear-gradient( 90deg, #2d83ce 0%, #5aa9e6 100% );
    border-radius: 10px;
}

.applications-empty-state {
display: flex;
    min-height: 125px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    font-size: 12px;
    color: #667085;
    text-align: center;
    background: #fafbfc;
    border: 1px dashed #d7dee8;
    border-radius: 9px;
}

.applications-empty-state svg {
width: 23px;
        height: 23px;
        color: #98a2b3;
}

@media (max-width: 1100px) {
.dashboard-side-panels {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 700px) {
.dashboard-side-panels {
grid-template-columns: 1fr;
}
}

