#dashboard-activity-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.activity-item {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8A949E;
}

.activity-text {
    color: #E8E8E8;
}

.activity-time {
    color: #8A949E;
    font-size: 13px;
    white-space: nowrap;
}

.activity-empty {
    color: #8A949E;
    padding: 12px 0;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delete-activities-btn {
    background: transparent;
    cursor: pointer;
    border: none;
}

.delete-activities-btn:hover {
    opacity: 0.5;
}

.delete-activities-btn img {
    width: 25px;
    height: 25px;
}